diff options
Diffstat (limited to 'perl-devel-checklib')
-rw-r--r-- | perl-devel-checklib/PKGBUILD | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/perl-devel-checklib/PKGBUILD b/perl-devel-checklib/PKGBUILD new file mode 100644 index 000000000..d9422929c --- /dev/null +++ b/perl-devel-checklib/PKGBUILD @@ -0,0 +1,44 @@ +# Maintainer: pzl <alsoelp _at_ gmail> +# CPAN Name : Devel::CheckLib + +pkgname='perl-devel-checklib' +pkgver='1.06' +pkgrel='1' +pkgdesc="Module to check if other perl modules are installed" +arch=('any') +url='http://search.cpan.org/dist/Devel-CheckLib/' +license=('PerlArtistic' 'GPL') +depends=('perl') +checkdepends=('perl-io-captureoutput') +options=('!emptydirs') +source=("http://search.cpan.org/CPAN/authors/id/M/MA/MATTN/Devel-CheckLib-${pkgver}.tar.gz") +md5sums=('1e7ab1d28313f5303c0ac777c9aa7b91') +_distdir="Devel-CheckLib-${pkgver}" + +prepare() { + 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 +} + +build() { + cd "${srcdir}/${_distdir}" + /usr/bin/perl Makefile.PL + make +} + +check() { + cd "${srcdir}/${_distdir}" + make test +} + +package() { + cd "${srcdir}/${_distdir}" + make install + + find "$pkgdir" -name .packlist -o -name perllocal.pod -delete +} + + |