blob: 8511ab9074b77eaba3ab160a9922021ca5866834 (
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
25
26
27
28
|
pre_install() {
echo "-- Edit config.h in PKGBUILD's directory (generally /var/abs/community/surf/)"
echo "-- and rebuild package if you want to change settings."
/bin/true
}
post_install() {
/bin/true
}
pre_upgrade() {
echo "-- Edit config.h in PKGBUILD's directory (generally /var/abs/community/surf/)"
echo "-- and rebuild package if you want to change settings."
/bin/true
}
post_upgrade() {
/bin/true
}
pre_remove() {
/bin/true
}
post_remove() {
/bin/true
}
|