blob: d71a9f660ccfa616e7a1cb46591cef1ab0839081 (
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
|
# Maintainer: Florian Pritz <bluewind@xinu.at>
pkgname=perl-config-simple
pkgver=4.59
pkgrel=8
pkgdesc="Simple configuration file class to create and read config files"
arch=(any)
license=(PerlArtistic GPL)
options=(!emptydirs)
depends=('perl')
url="http://search.cpan.org/~sherzodr/Config-Simple"
source=("http://search.cpan.org/CPAN/authors/id/S/SH/SHERZODR/Config-Simple-${pkgver}.tar.gz")
md5sums=('96513b61c7db591339ce2577878a3b32')
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 "${srcdir}/Config-Simple-${pkgver}"
/usr/bin/perl Makefile.PL
make
}
check() {
export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
cd "${srcdir}/Config-Simple-${pkgver}"
make test
}
package() {
cd "$_distdir"
cd "${srcdir}/Config-Simple-${pkgver}"
make DESTDIR="$pkgdir" install
find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
}
|