mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-07 23:24:05 +00:00
13 lines
321 B
Text
13 lines
321 B
Text
|
post_install () {
|
||
|
echo ">> Place 'cdemud' in DAEMONS= in /etc/rc.conf to enable cdemud on system boot."
|
||
|
echo ">> If the alsa-lib package is installed, cdemud can use the ALSA audio backend"
|
||
|
echo ">> (edit /etc/conf.d/cdemud to enable this)."
|
||
|
groupadd cdemu
|
||
|
}
|
||
|
post_remove() {
|
||
|
groupdel cdemu
|
||
|
}
|
||
|
op=$1
|
||
|
shift
|
||
|
$op $*
|