Rename pmpkg_t to alpm_pkg_t
[pacman-ng.git] / proto.install
blob2a8993d11c2b636bbaba52b7337f7c4ffcd425fa
1 # This is a default template for a post-install scriptlet.
2 # Uncomment only required functions and remove any functions
3 # you don't need (and this header).
5 ## arg 1:  the new package version
6 #pre_install() {
7   # do something here
8 #}
10 ## arg 1:  the new package version
11 #post_install() {
12   # do something here
15 ## arg 1:  the new package version
16 ## arg 2:  the old package version
17 #pre_upgrade() {
18   # do something here
21 ## arg 1:  the new package version
22 ## arg 2:  the old package version
23 #post_upgrade() {
24   # do something here
27 ## arg 1:  the old package version
28 #pre_remove() {
29   # do something here
32 ## arg 1:  the old package version
33 #post_remove() {
34   # do something here
37 # vim:set ts=2 sw=2 et: