summaryrefslogtreecommitdiff
path: root/testing/mpfr/mpfr.install
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-11-08 11:22:51 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-11-08 11:22:51 -0300
commit8b0286a4728c5a9d69b5bb2c9ee627be0ed70bdb (patch)
tree7bce6b1f38e6c2cd2de7a5d2580a0b5ff4faf49b /testing/mpfr/mpfr.install
parenta607668699d0ed030ac69ed31969dfa266439e38 (diff)
parenteffb26c3b1f00bf8bea4e2562f07f9a06eb67606 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community-testing/shotwell/PKGBUILD community-testing/texmaker/PKGBUILD community/i3lock/PKGBUILD core/dnsutils/PKGBUILD core/expat/PKGBUILD core/iptables/PKGBUILD extra/ntp/PKGBUILD extra/talloc/PKGBUILD multilib/lib32-talloc/PKGBUILD multilib/lib32-udev/PKGBUILD
Diffstat (limited to 'testing/mpfr/mpfr.install')
-rw-r--r--testing/mpfr/mpfr.install20
1 files changed, 20 insertions, 0 deletions
diff --git a/testing/mpfr/mpfr.install b/testing/mpfr/mpfr.install
new file mode 100644
index 000000000..d6dd0475b
--- /dev/null
+++ b/testing/mpfr/mpfr.install
@@ -0,0 +1,20 @@
+info_dir=usr/share/info
+info_files=(mpfr.info)
+
+post_install() {
+ [ -x usr/bin/install-info ] || return 0
+ 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() {
+ [ -x usr/bin/install-info ] || return 0
+ for f in ${info_files[@]}; do
+ install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+ done
+}