blob: 5174aec602d7b31a40bcea810cc41a8c72492675 (
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
40
41
42
43
44
45
46
47
48
49
|
# Maintainer: dracorp aka Piotr Rogoza <piotr.r.public at gmail.com>
_author=D/DC/DCONWAY
_perlmod=Perl6-Export
pkgname=perl-perl6-export
pkgver=0.009
pkgrel=1
pkgdesc="Perl6::Export - Implements the Perl 6 'is export(...)' trait "
arch=('any')
url="http://search.cpan.org/~dconway/Perl6-Export/"
license=('GPL' 'PerlArtistic')
groups=('perl6')
depends=('perl')
makedepends=('perl')
options=(!emptydirs)
source=("http://search.cpan.org/CPAN/authors/id/$_author/$_perlmod-$pkgver.tar.gz")
sha256sums=('8eff1d7f4403cc3a6726b8541b6e9f62427efbd16e4058e59bfbbd1396d99576')
unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps MODULEBUILDRC=/dev/null
build(){
cd "$srcdir"/$_perlmod-$pkgver
if [ -f Makefile.PL ]; then
perl Makefile.PL
make
else
perl Build.PL
./Build
fi
}
check(){
cd "$srcdir"/$_perlmod-$pkgver
if [ -f Makefile.PL ]; then
make test
else
./Build test
fi
}
package(){
cd "$srcdir"/$_perlmod-$pkgver
if [ -f Makefile.PL ]; then
make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
else
./Build install --installdirs=vendor --destdir="$pkgdir"
fi
}
|