mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 05:37:34 +03:00
get.sh: Add DESTDIR environent variable support and set default values in binary
It is separate from the PREFIX variable which specifies the path use *within* the system tree whereas DESTDIR specifies the path to the system tree itself. For get.sh-based installation, DESTDIR="" PREFIX=/usr/local. For package.sh DESTDIR is a temporary directory and PREFIx=/usr. With that change it is now possible to set the default libexec directory to a correct value depending on the PREFIX variable.
This commit is contained in:
parent
4f876d81f3
commit
1f7340fe6c
3 changed files with 34 additions and 17 deletions
17
dist/install.sh
vendored
17
dist/install.sh
vendored
|
@ -1,5 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
DESTDIR=$DESTDIR
|
||||
if [ -z "$PREFIX" ]; then
|
||||
PREFIX=/usr/local
|
||||
fi
|
||||
|
@ -13,14 +14,14 @@ fi
|
|||
script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
||||
cd $script_dir
|
||||
|
||||
install -Dm 0644 -t "$PREFIX/share/vim/vimfiles/ftdetect/" vim/ftdetect/maddy-conf.vim
|
||||
install -Dm 0644 -t "$PREFIX/share/vim/vimfiles/ftplugin/" vim/ftplugin/maddy-conf.vim
|
||||
install -Dm 0644 -t "$PREFIX/share/vim/vimfiles/syntax/" vim/syntax/maddy-conf.vim
|
||||
install -Dm 0644 -t "$DESTDIR/$PREFIX/share/vim/vimfiles/ftdetect/" vim/ftdetect/maddy-conf.vim
|
||||
install -Dm 0644 -t "$DESTDIR/$PREFIX/share/vim/vimfiles/ftplugin/" vim/ftplugin/maddy-conf.vim
|
||||
install -Dm 0644 -t "$DESTDIR/$PREFIX/share/vim/vimfiles/syntax/" vim/syntax/maddy-conf.vim
|
||||
|
||||
install -Dm 0644 -t "$FAIL2BANDIR/jail.d/" fail2ban/jail.d/*
|
||||
install -Dm 0644 -t "$FAIL2BANDIR/filter.d/" fail2ban/filter.d/*
|
||||
install -Dm 0644 -t "$DESTDIR/$FAIL2BANDIR/jail.d/" fail2ban/jail.d/*
|
||||
install -Dm 0644 -t "$DESTDIR/$FAIL2BANDIR/filter.d/" fail2ban/filter.d/*
|
||||
|
||||
install -Dm 0644 -t "$PREFIX/lib/systemd/system/" systemd/maddy.service systemd/maddy@.service
|
||||
install -Dm 0644 -t "$DESTDIR/$PREFIX/lib/systemd/system/" systemd/maddy.service systemd/maddy@.service
|
||||
|
||||
install -Dm 0644 -t "$CONFDIR/integration/" integration/rspamd.conf
|
||||
install -Dm 0755 -t "$PREFIX/bin/" scripts/maddy-rspamd-hook
|
||||
install -Dm 0644 -t "$DESTDIR/$CONFDIR/integration/" integration/rspamd.conf
|
||||
install -Dm 0755 -t "$DESTDIR/$PREFIX/bin/" scripts/maddy-rspamd-hook
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue