blob: 5f4acd962df0436605d9f0a7498d5b2d1edb0c15 (
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
|
# Contributor: Justin Davis <jrcd83@gmail.com>
# Generator : CPANPLUS::Dist::Arch 1.04
# Maintainer : Parabola GNU / Linux-libre Aurelien Desbrieres <aurelien@cwb.IO>
pkgname='perl-unix-syslog'
pkgver='1.1'
pkgrel='1'
pkgdesc="Interface to syslog functions in a C-library"
arch=('any')
license=('PerlArtistic' 'GPL')
options=('!emptydirs')
depends=('glibc>=2.12.1' 'perl')
url='http://search.cpan.org/dist/Unix-Syslog'
source=('http://search.cpan.org/CPAN/authors/id/M/MH/MHARNISCH/Unix-Syslog-1.1.tar.gz')
build() {
PERL=/usr/bin/perl
DIST_DIR="${srcdir}/Unix-Syslog-1.1"
export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
PERL_AUTOINSTALL=--skipdeps \
PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
MODULEBUILDRC=/dev/null
{ cd "$DIST_DIR" &&
$PERL Makefile.PL &&
make &&
make test &&
make install;
} || return 1;
find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
}
|