blob: 7b65355f347c7f4436229b2c3c87bf598dc32c20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
/opt/ucsf-chimera/bin/xdg-setup install
}
post_upgrade() {
post_install
}
pre_remove() {
/opt/ucsf-chimera/bin/xdg-setup uninstall
}
# vim: ft=sh ts=2 sw=2 et
|