mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
386 B
Text
23 lines
386 B
Text
HS_DIR=/usr/share/haskell/xmonad
|
|
|
|
post_install() {
|
|
${HS_DIR}/register.sh
|
|
echo "xmonad now has dynamic configuration via ~/.xmonad/xmonad.hs"
|
|
echo "See http://haskell.org/haskellwiki/Xmonad/Config_archive for examples"
|
|
}
|
|
|
|
pre_upgrade() {
|
|
${HS_DIR}/unregister.sh
|
|
}
|
|
|
|
post_upgrade() {
|
|
${HS_DIR}/register.sh
|
|
}
|
|
|
|
pre_remove() {
|
|
${HS_DIR}/unregister.sh
|
|
}
|
|
op=$1
|
|
shift
|
|
|
|
$op $*
|