diff options
-rw-r--r-- | main/squark/APKBUILD | 3 | ||||
-rwxr-xr-x | main/squark/squark.post-install | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/main/squark/APKBUILD b/main/squark/APKBUILD index bef596671c..4f154dde49 100644 --- a/main/squark/APKBUILD +++ b/main/squark/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Timo Teras <timo.teras@iki.fi> pkgname=squark pkgver=0.4.4 -pkgrel=0 +pkgrel=1 pkgdesc="Squark - Squid User Authentication and Rating Kit" subpackages= depends="haserl lua" @@ -11,6 +11,7 @@ source="http://git.alpinelinux.org/cgit/$pkgname/snapshot/$pkgname-$pkgver.tar.b url="http://git.alpinelinux.org/cgit/squark/" arch="all" license=GPL-2 +install="$pkgname.post-install" prepare() { cd "$srcdir" diff --git a/main/squark/squark.post-install b/main/squark/squark.post-install new file mode 100755 index 0000000000..5c1ac67c17 --- /dev/null +++ b/main/squark/squark.post-install @@ -0,0 +1,2 @@ +#!/bin/sh +addgroup squark &>/dev/null |