diff options
author | Thiago Coutinho | 2015-06-18 23:16:58 -0300 |
---|---|---|
committer | Thiago Coutinho | 2015-06-19 08:54:09 -0300 |
commit | 1167edf999f52e69731f14ea063b544d22280c54 (patch) | |
tree | 3998b3be3079f7405173157f7b36f3ddea9dedc1 /PKGBUILD | |
download | aur-1167edf999f52e69731f14ea063b544d22280c54.tar.gz |
Initial import
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..bbb2a1b4f318 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,18 @@ +pkgname=awall +pkgver=1.2.4 +pkgrel=1 +pkgdesc='Alpine Wall iptables based firewall' +arch=('any') +url='http://git.alpinelinux.org/cgit/awall/' +license=('GPL2') +depends=('lua>=5.2' 'lua-filesystem' 'lua-alt-getopt' 'lua-stringy' 'lua-signal' 'lua-pc' 'xtables-addons' 'iptables' 'dnsutils') +source=(http://dev.alpinelinux.org/archive/awall/$pkgname-$pkgver.tar.xz) +noextract=() + +package() { + cd "$srcdir"/$pkgname-$pkgver + make ROOT_DIR="$pkgdir/" install + mkdir -p "$pkgdir/var/run/awall" +} + +md5sums=('69aeb3aabd8e73662a0d5e89c9f3de0c') |