summarylogtreecommitdiffstats
path: root/xmonad-contrib.install
blob: 57583b0d57be38cd7325eeb1c46034e69d196720 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
HS_DIR=usr/share/haskell/xmonad-contrib

post_install() {
  ${HS_DIR}/register.sh
  echo "You have to rebuild this package after any change to the haskell deps"
}

pre_upgrade() {
  ${HS_DIR}/unregister.sh
}

post_upgrade() {
  ${HS_DIR}/register.sh
  echo "You have to rebuild this package after any change to the haskell deps"
}

pre_remove() {
  ${HS_DIR}/unregister.sh
}