blob: 586aaf72e5390977a4a0049b10a160bc7b29728e (
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
37
38
39
40
41
42
|
# $Id: PKGBUILD 91685 2013-05-26 09:25:43Z bluewind $
# Maintainer: Angel Velasquez <angvp@archlinux.org>
# Contributor: Angel Velasquez <angvp@archlinux.org>
# Generator : CPANPLUS::Dist::Arch 1.12
pkgname='perl-linux-pid'
pkgver='0.04'
pkgrel='3'
pkgdesc="Interface to Linux getpp?id functions"
arch=('i686' 'x86_64')
license=('PerlArtistic' 'GPL')
options=('!emptydirs')
depends=('perl')
url='http://search.cpan.org/dist/Linux-Pid'
source=(http://search.cpan.org/CPAN/authors/id/R/RG/RGARCIA/Linux-Pid-$pkgver.tar.gz)
md5sums=('130c4d299f827abf1f2285fddf03fccb')
build() {
( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
PERL_AUTOINSTALL=--skipdeps \
PERL_MM_OPT="INSTALLDIRS=vendor" \
PERL_MB_OPT="--installdirs vendor" \
MODULEBUILDRC=/dev/null
cd Linux-Pid-$pkgver
/usr/bin/perl Makefile.PL
make
)
}
check() {
cd Linux-Pid-$pkgver
( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
make test
)
}
package() {
cd Linux-Pid-$pkgver
make DESTDIR="$pkgdir" install
}
|