updated on Thu Jan 26 00:18:00 UTC 2012
[aur-mirror.git] / perl-params-classify / PKGBUILD
blob1337cedead09bb087bee9a9828176f7cfdd5d879
1 # PKGBUILD generated by pacpan
2 pkgname=perl-params-classify
3 _realname=Params-Classify
4 pkgver=0.009
5 pkgrel=1
6 pkgdesc="argument type classification"
7 arch=(i686 x86_64)
8 license=('perl')
9 url="http://search.cpan.org/~zefram/Params-Classify"
10 options=(!emptydirs)
12 depends=('perl>=5.10.1')
13 makedepends=('perl>=5.10.1')
14 optdepends=('perl')
16 #provides=('Params-Classify')
17 provides=('params-classify=0.009' 'Params::Classify=0.009' 'perl-params-classify=0.009')
19 source=(http://search.cpan.org/CPAN/authors/id/Z/ZE/ZEFRAM/Params-Classify-0.009.tar.gz)
20 md5sums=('57114b9272df5c4dba1aeb3c4b4d2984')
22 build() {
23   _expected_dir="${srcdir}/${_realname}-${pkgver}"
24   if [ -d "$_expected_dir" ]; then
25     cd "$_expected_dir"
26   else
27     _expected_dir="${srcdir}/$(bsdtar -t -f $(basename $source) | head -n1)"
28     if [ -d "$_expected_dir" ]; then
29       cd "$_expected_dir"
30     else
31       _makefile=$(find $srcdir -iname Makefile.PL)
32       if [ ! -z "$_makefile" ]; then
33         _expected_dir=$(dirname $_makefile)
34         if [ -d "$_expected_dir" ]; then
35           cd "$_expected_dir"
36         else
37           echo "\e[1;31mERROR\e[0m unable to detect source directory"
38           echo "\e[1;34m-->\e[0m this is often due to CPAN's lack of standard naming conventions"
39           echo "\e[1;34m-->\e[0m it may be possible to fix this by adjusting the build function in the PKGBUILD"
40         fi
41       fi
42     fi
43   fi
44   # install module in vendor directories.
45   PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1
46   make  || return 1
47   make install DESTDIR=${pkgdir} || return 1
49   # remove perllocal.pod and .packlist
50   find ${pkgdir} -name perllocal.pod -delete
51   find ${pkgdir} -name .packlist -delete
54 # vim:set ts=2 sw=2 et: