summaryrefslogtreecommitdiff
path: root/libre-testing/libretools/libretools.install
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2013-05-03 10:15:48 +0200
committerMichał Masłowski <mtjm@mtjm.eu>2013-05-03 10:15:48 +0200
commitf3a4e8da400567018b5d73b66cd67b8da0d280b8 (patch)
treed5155fde8d7050660d85895ac9cb185c580c9f7e /libre-testing/libretools/libretools.install
parent20bbe9abadb460e01df2d5eefabdd199033274a5 (diff)
parent32b069e79cb891e99962cbac53e2950c11ea403f (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/python-simplejson/PKGBUILD community/teeworlds/PKGBUILD core/openldap/PKGBUILD core/zlib/PKGBUILD extra/soprano/PKGBUILD extra/ucommon/PKGBUILD
Diffstat (limited to 'libre-testing/libretools/libretools.install')
-rw-r--r--libre-testing/libretools/libretools.install28
1 files changed, 28 insertions, 0 deletions
diff --git a/libre-testing/libretools/libretools.install b/libre-testing/libretools/libretools.install
new file mode 100644
index 000000000..ff6a238fe
--- /dev/null
+++ b/libre-testing/libretools/libretools.install
@@ -0,0 +1,28 @@
+#!/bin/sh
+
+_makepkgconf_append='[[ ! -x /usr/bin/librefetch ]] || DLAGENTS+=("libre::/usr/bin/librefetch -p \"\$BUILDFILE\" %u %o")'
+
+# arg 1: the new package version
+post_install() {
+ if grep -q 'libre::' etc/makepkg.conf; then
+ libremessages msg2 "libretools: librefetch is already in /etc/makepkg.conf"
+ else
+ libremessages msg2 "libretools: Adding librefetch to /etc/makepkg.conf"
+ printf '%s\n' "$_makepkgconf_append" >> etc/makepkg.conf
+ fi
+}
+
+## arg 1: the new package version
+## arg 2: the old package version
+post_upgrade() {
+ post_install
+}
+
+pre_remove() {
+ if fgrep -q "$_makepkgconf_append" etc/makepkg.conf; then
+ libremessages msg2 "libretools: removing librefetch from /etc/makepkg.conf"
+ sed -i '/libre::/d'
+ else
+ libremessages msg2 "libretools: librefetch is not in /etc/makepkg.conf as we added it"
+ fi
+}