blob: 36848f0ceecc6f9a8e1fda8dff7f98890aaa7aca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# arg 1: the new package version
post_install() {
echo "Edit /etc/libretools.conf to fit your needs"
echo ""
echo "For the scripts that can be run as normal user you can make"
echo "custom configuration by copying /etc/libretools.conf to"
echo "\$XDG_CONFIG_HOME/libretools/libretools.conf"
echo ""
echo "Your /etc/pacman.conf should have uncommented CacheDir option"
}
# arg 1: the old package version
post_remove() {
}
|