summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e67bf724b31b3be00e70ca730ebcd05ca091ad4b (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
29
30
31
# Maintainer: Anthony C <kurodroid.1@gmail.com>
# Contributor: Weirch Sodora <sodora@gmail.com>

pkgname=perl-iptables-parse
_pkgname=IPTables-Parse
pkgver=1.5
pkgrel=0
pkgdesc="IPTables::Parse - Perl extension for parsing iptables and ip6tables firewall rulesets"
arch=('any')
url="http://search.cpan.org/~mrash/IPTables-Parse/"
license=('GPL' 'PerlArtistic')
depends=('perl' 'iptables')
options=('!emptydirs')
source=(http://search.cpan.org/CPAN/authors/id/M/MR/MRASH/$_pkgname-$pkgver.tar.gz)
md5sums=('009e1bd3cfa0621d26c63d1e75ede8f3')

build() {
    cd  $_pkgname-$pkgver
    perl Makefile.PL INSTALLDIRS=vendor
    make
}

check() {
    cd $_pkgname-$pkgver
    make test
}

package() {
    cd $_pkgname-$pkgver
    make DESTDIR="$pkgdir" install
}