mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
15 lines
261 B
Text
15 lines
261 B
Text
post_install() {
|
|
sed -e '/\/opt\/grass-*/d' -i /etc/ld.so.conf
|
|
echo '/opt/grass/lib' >> etc/ld.so.conf
|
|
sbin/ldconfig -r .
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
pre_remove() {
|
|
sed -e '/\/opt\/grass-*\/lib/d' -i /etc/ld.so.conf
|
|
sbin/ldconfig -r .
|
|
}
|
|
|