updated on Tue Jan 10 04:01:21 UTC 2012
[aur-mirror.git] / perl-namespace-clean / PKGBUILD
blobb028ac8e7cacbbb63ec338deb98a36742212030f
1 # Contributor: AUR Perl <aurperl@juster.info>
2 # Generator  : CPANPLUS::Dist::Arch 1.17
4 pkgname='perl-namespace-clean'
5 pkgver='0.21'
6 pkgrel='1'
7 pkgdesc="Keep imports and functions out of your namespace"
8 arch=('any')
9 license=('PerlArtistic' 'GPL')
10 options=('!emptydirs')
11 depends=('perl-b-hooks-endofscope>=0.07' 'perl-package-stash>=0.23')
12 makedepends=()
13 url='http://search.cpan.org/dist/namespace-clean'
14 source=('http://search.cpan.org/CPAN/authors/id/R/RI/RIBASUSHI/namespace-clean-0.21.tar.gz')
15 md5sums=('eabf88eec3f5952c4bb87461b69fd1d8')
16 _distdir="${srcdir}/namespace-clean-0.21"
18 build() {
19   ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""                 \
20       PERL_AUTOINSTALL=--skipdeps                            \
21       PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'"     \
22       PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
23       MODULEBUILDRC=/dev/null
25     cd "$_distdir"
26     /usr/bin/perl Makefile.PL
27     make
28   )
31 check() {
32   cd "$_distdir"
33   ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
34     make test
35   )
38 package() {
39   cd "$_distdir"
40   make install
41   find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
44 # Local Variables:
45 # mode: shell-script
46 # sh-basic-offset: 2
47 # End:
48 # vim:set ts=2 sw=2 et: