diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-07-14 02:25:24 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-07-14 02:25:24 (GMT) |
commit | b08d687d99a8df0e2c0be8e1746a8456518edb8e (patch) | |
tree | 840fed35616837616ae0c509bdcc79301840902b /abs/core-testing/mplayer-wrapper/mplayer-wrapper.install | |
parent | a6476c77e1cc295d4b8debaea2d0dfbeae0f7b01 (diff) | |
parent | 4c71823825d08c1cc2219d22a6d3fe190e158a09 (diff) | |
download | linhes_pkgbuild-b08d687d99a8df0e2c0be8e1746a8456518edb8e.zip linhes_pkgbuild-b08d687d99a8df0e2c0be8e1746a8456518edb8e.tar.gz linhes_pkgbuild-b08d687d99a8df0e2c0be8e1746a8456518edb8e.tar.bz2 |
Merge branch 'HEAD' of ssh://cesman@knoppmyth.net/mount/repository/LinHES-PKGBUILD
Conflicts:
abs/core-testing/LinHES-config/PKGBUILD
Diffstat (limited to 'abs/core-testing/mplayer-wrapper/mplayer-wrapper.install')
-rw-r--r-- | abs/core-testing/mplayer-wrapper/mplayer-wrapper.install | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/abs/core-testing/mplayer-wrapper/mplayer-wrapper.install b/abs/core-testing/mplayer-wrapper/mplayer-wrapper.install new file mode 100644 index 0000000..18f1b75 --- /dev/null +++ b/abs/core-testing/mplayer-wrapper/mplayer-wrapper.install @@ -0,0 +1,38 @@ +# This is a default template for a post-install scriptlet. You can +# remove any functions you don't need (and this header). + +# arg 1: the new package version +pre_install() { +/bin/true +} + +# arg 1: the new package version +post_install() { +/bin/true +} + +# arg 1: the new package version +# arg 2: the old package version +pre_upgrade() { + /bin/true +} + +# arg 1: the new package version +# arg 2: the old package version +post_upgrade() { + /bin/true +} + +# arg 1: the old package version +pre_remove() { + /bin/true +} + +# arg 1: the old package version +post_remove() { + /bin/true +} + +op=$1 +shift +$op $* |