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/mpfr/mpfr.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/mpfr/mpfr.install')
-rw-r--r-- | abs/core-testing/mpfr/mpfr.install | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/abs/core-testing/mpfr/mpfr.install b/abs/core-testing/mpfr/mpfr.install new file mode 100644 index 0000000..a95dec6 --- /dev/null +++ b/abs/core-testing/mpfr/mpfr.install @@ -0,0 +1,18 @@ +info_dir=/usr/share/info +info_files=(mpfr.info) + +post_install() { + for f in ${info_files[@]}; do + install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null + done +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + for f in ${info_files[@]}; do + install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null + done +} |