blob: d46990da827faf4de746b333c0f77efc8d6bce3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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' etc/makepkg.conf
else
libremessages msg2 "libretools: librefetch is not in /etc/makepkg.conf as we added it"
fi
}
|