updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / liquidsoap-full / liquidsoap.install
blob56891e50d958146e21549bb514aaa5346e6acab0
1 # arg 1:  the new package version
2 post_install() {
3   groupadd -g 140 liquidsoap &>/dev/null
4   useradd -u 140 -g liquidsoap -d /home/liquidsoap -s /bin/false liquidsoap &>/dev/null
6   cat << EOM
8 You have also optional dependencies:
11     * libortp for experimental RTP input/output
12     * festival is a general multi-lingual speech synthesis system developed at CSTR
14 EOM
17 post_upgrade() {
18   post_install $1
21 pre_remove() {
22   userdel liquidsoap &>/dev/null
23   groupdel liquidsoap &>/dev/null