diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-03-06 17:51:53 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-03-06 17:51:53 +0000 |
commit | 2fb6e1a6512047ea1d7f9a31bdce5e1561682fb9 (patch) | |
tree | 0eb8d65c3a18851badd632e521a28e546610057e /sample.install | |
parent | 2b1fd461770058c6fd6cbdd8edac934843ad94da (diff) | |
download | abuild-2fb6e1a6512047ea1d7f9a31bdce5e1561682fb9.tar.gz abuild-2fb6e1a6512047ea1d7f9a31bdce5e1561682fb9.tar.bz2 abuild-2fb6e1a6512047ea1d7f9a31bdce5e1561682fb9.tar.xz abuild-2fb6e1a6512047ea1d7f9a31bdce5e1561682fb9.zip |
abuild: fixes for new install scripts
Diffstat (limited to 'sample.install')
-rw-r--r-- | sample.install | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/sample.install b/sample.install deleted file mode 100644 index a05d28b..0000000 --- a/sample.install +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/sh - -case "$1" in - pre_install) - # add something which happends before install - # $2 contains package version - ;; - post_install) - # add something which happends after install - # $2 contains package version - ;; - pre_upgrade) - # add something which happends before update - # $2 contains new package version - # $3 contains old package version - ;; - post_upgrade) - # add something which happends after update - # $2 contains new package version - # $3 contains old package version - ;; - pre_deinstall) - # add something which happends before delete - # $2 contains package version - ;; - post_deinstall) - # add something which happends after delete - # $2 contains package version - ;; -esac |