summaryrefslogtreecommitdiff
path: root/community/arptables/PKGBUILD
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-07-25 04:03:32 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-07-25 04:03:32 +0000
commit29cefdccedfcb48822a8da80b259ed0bb0f73266 (patch)
treeeabeaf9a2ee1319f8cc0f3e05018588aa5a169c9 /community/arptables/PKGBUILD
parentd256eaa80219eb28cbfb4f9474acc6fb41c63d3c (diff)
Fri Jul 25 03:59:36 UTC 2014
Diffstat (limited to 'community/arptables/PKGBUILD')
-rw-r--r--community/arptables/PKGBUILD49
1 files changed, 0 insertions, 49 deletions
diff --git a/community/arptables/PKGBUILD b/community/arptables/PKGBUILD
deleted file mode 100644
index edc4066e8..000000000
--- a/community/arptables/PKGBUILD
+++ /dev/null
@@ -1,49 +0,0 @@
-# $Id: PKGBUILD 90489 2013-05-12 22:21:54Z seblu $
-# Maintainer: Sébastien Luttringer
-# Contributor: Daniel Micay <danielmicay@gmail.com>
-# Contributor: Michal Soltys <soltys@ziu.info>
-
-pkgname=arptables
-pkgver=0.0.4
-pkgrel=2
-pkgdesc='ARP filtering utility'
-arch=('i686' 'x86_64')
-url='http://ebtables.sourceforge.net/'
-depends=('glibc' 'perl' 'bash')
-license=('GPL')
-backup=("etc/$pkgname.conf")
-source=("http://downloads.sourceforge.net/ebtables/$pkgname-v${pkgver//_/-}.tar.gz"
- "$pkgname.systemd"
- "$pkgname.service")
-md5sums=('c2e99c3aa9d78c9dfa30710ca3168182'
- 'e54342a833c52b2bc67e7985e8f8fdfd'
- 'b26771191e52905d8aea6333c26cb1c3')
-
-build() {
- cd $pkgname-v${pkgver//_/-}
- make
-}
-
-package() {
- pushd $pkgname-v${pkgver//_/-}
- make install \
- DESTDIR="$pkgdir" \
- PREFIX=/usr \
- LIBDIR=/usr/lib/arptables \
- BINDIR=/usr/bin \
- MANDIR=/usr/share/man \
- INITDIR=/etc/rc.d \
- SYSCONFIGDIR=/etc
- popd
- # systemd
- install -Dm 755 $pkgname.systemd \
- "$pkgdir/usr/lib/systemd/scripts/$pkgname"
- install -Dm 644 $pkgname.service \
- "$pkgdir/usr/lib/systemd/system/$pkgname.service"
- # default config file
- install -Dm 644 /dev/null "$pkgdir/etc/$pkgname.conf"
- # remove upstream rc
- rm -rf "$pkgdir/etc/rc.d"
-}
-
-# vim:set ts=2 sw=2 et: