summaryrefslogtreecommitdiff
path: root/libre-testing/libretools/libretools.install
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@lavabit.com>2013-06-08 20:44:07 -0300
committerAndré Fabian Silva Delgado <emulatorman@lavabit.com>2013-06-08 20:44:07 -0300
commit4ec145ccfc042a78b953357d5fb5f86803463192 (patch)
treecc0d010ee1488edec38390eadc25ad5c3491e3e1 /libre-testing/libretools/libretools.install
parentf136d6e19bc1c81449405edc1a0de04887d4b5a9 (diff)
parent9af1e9d623036a1f098f0b6e6c4f22b175c5f23b (diff)
downloadabslibre-4ec145ccfc042a78b953357d5fb5f86803463192.tar.gz
abslibre-4ec145ccfc042a78b953357d5fb5f86803463192.tar.bz2
abslibre-4ec145ccfc042a78b953357d5fb5f86803463192.zip
Merge branch 'master' of ssh://parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to 'libre-testing/libretools/libretools.install')
-rw-r--r--libre-testing/libretools/libretools.install28
1 files changed, 0 insertions, 28 deletions
diff --git a/libre-testing/libretools/libretools.install b/libre-testing/libretools/libretools.install
deleted file mode 100644
index ff6a238fe..000000000
--- a/libre-testing/libretools/libretools.install
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/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
-}