diff options
-rw-r--r-- | main/busybox/APKBUILD | 3 | ||||
-rw-r--r-- | main/busybox/busybox.trigger | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/main/busybox/APKBUILD b/main/busybox/APKBUILD index 7e428e2113..7fb318c1bd 100644 --- a/main/busybox/APKBUILD +++ b/main/busybox/APKBUILD @@ -1,12 +1,13 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=busybox pkgver=1.14.3 -pkgrel=3 +pkgrel=4 pkgdesc="Size optimized toolbox of many common UNIX utilities" url=http://busybox.net license="GPL-2" depends= install="$pkgname.post-install $pkgname.post-upgrade" +triggers="busybox.trigger:/bin /usr/bin /sbin /usr/sbin /lib/modules/*" source="http://busybox.net/downloads/$pkgname-$pkgver.tar.bz2 $pkgname-1.11.1-bb.patch 0001-install-compat-fix-for-mode-of-created-files.patch diff --git a/main/busybox/busybox.trigger b/main/busybox/busybox.trigger new file mode 100644 index 0000000000..8bdef2ba56 --- /dev/null +++ b/main/busybox/busybox.trigger @@ -0,0 +1,15 @@ +#!/bin/sh + +do_bb_install= + +for i in "$@"; do + case "$i" in + /lib/modules/*) /bin/busybox depmod ${i#/lib/modules/};; + *) do_bb_install=yes;; + esac +done + +if [ -n "$do_bb_install" ]; then + /bin/busybox --install -s +fi + |