blob: 1639560246b0bcfea54c686a2f2734d2c18ff60d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# arg 1: the new package version
post_install() {
update-cleansystem
cat <<EOF
Please check http://wiki.parabolagnulinux.org/Package_maintainer_guide
and follow instructions there before using libretools.
If you plan using fullpkg you should read http://wiki.parabolagnulinux.org/fullpkg
and install libretools-$arch if avaliable
EOF
}
## arg 1: the new package version
## arg 2: the old package version
post_upgrade() {
update-cleansystem
cat <<EOF
Check your /etc/libretools.conf
EOF
}
# vim:set ts=2 sw=2 et:
|