diff options
author | James Meyer <james.meyer@operamail.com> | 2010-11-06 17:34:48 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2010-11-06 17:34:48 (GMT) |
commit | a88e0a4caaee4269707417416f8e36c754ea6e16 (patch) | |
tree | de63f290d0c85422f5c9bb8bfb3e186030f79080 /abs/extra/perl-class-inspector/PKGBUILD | |
parent | 9b21e2c89af805f7e2e3014075318587ae479396 (diff) | |
parent | 28df92c527607da6a77cbc2ba0f8f62bc6dff548 (diff) | |
download | linhes_pkgbuild-a88e0a4caaee4269707417416f8e36c754ea6e16.zip linhes_pkgbuild-a88e0a4caaee4269707417416f8e36c754ea6e16.tar.gz linhes_pkgbuild-a88e0a4caaee4269707417416f8e36c754ea6e16.tar.bz2 |
Merge branch 'testing' of ssh://linhes.org/mount/repository/linhes_pkgbuild into testing
Diffstat (limited to 'abs/extra/perl-class-inspector/PKGBUILD')
-rw-r--r-- | abs/extra/perl-class-inspector/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/abs/extra/perl-class-inspector/PKGBUILD b/abs/extra/perl-class-inspector/PKGBUILD new file mode 100644 index 0000000..fd138b8 --- /dev/null +++ b/abs/extra/perl-class-inspector/PKGBUILD @@ -0,0 +1,29 @@ +#$Id:$ +pkgname=perl-class-inspector +_realname=Class-Inspector +pkgver=1.24 +pkgrel=1 +pkgdesc="'Get information about a class and its structure'" +arch=(i686 x86_64) +license=('GPL' 'Artistic') +url="http://search.cpan.org/~adamk/Class-Inspector" +options=(!emptydirs) +depends=('perl>=5.10.0') +provides=('class-inspector=1.24' 'Class::Inspector=1.24' 'perl-class-inspector=1.24' 'Class::Inspector::Functions=1.24' 'perl-class-inspector-functions=1.24') +source=(http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/Class-Inspector-1.24.tar.gz) +md5sums=('609189b49f64d329a6e413e0a6d8724a') + +build() { + cd "${srcdir}/${_realname}-${pkgver}" + # install module in vendor directories. + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor + make + make install DESTDIR=${pkgdir} + + # remove perllocal.pod and .packlist + find ${pkgdir} -name perllocal.pod -delete + find ${pkgdir} -name .packlist -delete +} + +# vim:set ts=2 sw=2 et: + |