diff options
author | James Meyer <james.meyer@operamail.com> | 2008-11-09 20:43:31 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2008-11-09 20:43:31 (GMT) |
commit | 5fd8298a4c454a3b91be11f269ced788b7a37679 (patch) | |
tree | 048f5d8c5c71006a7478bf7230155788e49f46b2 /abs/core-testing/texinfo/texinfo.install | |
parent | 1c4b59e5d379ba44c9ba9e27750ebec49a597c0d (diff) | |
download | linhes_pkgbuild-5fd8298a4c454a3b91be11f269ced788b7a37679.zip linhes_pkgbuild-5fd8298a4c454a3b91be11f269ced788b7a37679.tar.gz linhes_pkgbuild-5fd8298a4c454a3b91be11f269ced788b7a37679.tar.bz2 |
gcc and all its requirements
Diffstat (limited to 'abs/core-testing/texinfo/texinfo.install')
-rw-r--r-- | abs/core-testing/texinfo/texinfo.install | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/abs/core-testing/texinfo/texinfo.install b/abs/core-testing/texinfo/texinfo.install new file mode 100644 index 0000000..87c7ac4 --- /dev/null +++ b/abs/core-testing/texinfo/texinfo.install @@ -0,0 +1,18 @@ +infodir=/usr/share/info +filelist=(info.info.gz info-stnd.info.gz texinfo.gz texinfo-1.gz texinfo-2.gz texinfo-3.gz) + +post_install() { + for file in ${filelist[@]}; do + install-info $infodir/$file $infodir/dir 2> /dev/null + done +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + for file in ${filelist[@]}; do + install-info --delete $infodir/$file $infodir/dir 2> /dev/null + done +} |