blob: 43f0bb162b46d208e942091a12bf6718facc238d (
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
32
33
34
35
36
|
# Maintainer: Brian Bidulock <bidulock@openss7.org>
# Contributor: Pranay Kanwar <pranay.kanwar@gmail.com>
pkgname=perl-net-write
_cpanname=Net-Write
_module=Net::Write
pkgver=1.10
pkgrel=3
pkgdesc="$_module - a portable interface to open and send raw data to network"
arch=('any')
url="https://metacpan.org/release/${_cpanname}"
license=('GPL' 'PerlArtistic')
depends=('perl-class-gomor' 'perl-socket6' 'perl-net-pcap>=0.12')
options=('!emptydirs')
source=("http://cpan.metacpan.org/authors/id/G/GO/GOMOR/${_cpanname}-${pkgver}.tar.gz")
md5sums=('1b8a67edd006f99ddc06db10f51b65a4')
build() {
cd "$srcdir/$_cpanname-$pkgver"
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
make
}
check() {
cd "$srcdir/$_cpanname-$pkgver"
make test
}
package() {
cd "$srcdir/$_cpanname-$pkgver"
make install DESTDIR="$pkgdir"
find "$pkgdir" -name '.packlist' -o -name '*.pod' -delete
rm -fr "$pkgdir/usr/lib"
}
# vim:set ts=2 sw=2 et:
|