diff options
author | Nicolás Reynolds <fauno@parabola.nu> | 2013-05-03 17:17:43 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@parabola.nu> | 2013-05-03 17:17:43 -0300 |
commit | b7cda31a337c2d6d5e6d953d7e75b4b226126905 (patch) | |
tree | 9b65b67388f773443e277f96971e2abe058ee0ee /libre-testing/libretools/libretools.install | |
parent | 143857725f3445d3197463cef1baf4dd5638bc1b (diff) | |
parent | d5cb028e7d840387711c8a9d6aa2ca7ac3cdf24c (diff) |
Merge branch 'master' of vparabola:abslibre
Diffstat (limited to 'libre-testing/libretools/libretools.install')
-rw-r--r-- | libre-testing/libretools/libretools.install | 28 |
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 +} |