blob: e12fb6a07ad5300aab2f302099f73cbb0a1fa8fe (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Maintainer: Erich Eckner <arch at eckner dot net>
# Contributor: John D Jones III <j[nospace]n[nospace]b[nospace]e[nospace]k[nospace]1972 -_AT_- the domain name google offers a mail service at ending in dot com>
# Generator : CPANPLUS::Dist::Arch 1.25
pkgname='perl-moosex-markasmethods'
pkgver='0.15'
pkgrel='4'
pkgdesc="Mark overload code symbols as methods"
arch=('any')
license=('PerlArtistic' 'GPL')
options=('!emptydirs')
depends=(
'perl>=5.6.0'
'perl-b-hooks-endofscope'
'perl-moose>=0.94'
'perl-moose-exporter'
'perl-moose-role'
'perl-moose-util-metarole'
'perl-namespace-autoclean>=0.12')
makedepends=(
'perl-extutils-makemaker>=6.30'
'perl-file-temp'
'perl-test-moose'
'perl-test-simple>=0.92')
checkdepends=(
'perl-pod-wordlist-hanekomu'
'perl-test-spelling')
url='http://search.cpan.org/dist/MooseX-MarkAsMethods'
source=("http://search.cpan.org/CPAN/authors/id/R/RS/RSRCHBOY/MooseX-MarkAsMethods-${pkgver}.tar.gz")
sha512sums=('be4de7bc7650ecdda18a9b0ac90bcf74200c09691680078c2750d234a8523a6c0ec1701067461b42f08730f02729f1401b47af56cdb8364c1033df3ea9c18078')
_distdir="MooseX-MarkAsMethods-${pkgver}"
build() {
( 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
cd "$srcdir/$_distdir"
/usr/bin/perl Makefile.PL
make
)
}
check() {
cd "$srcdir/$_distdir"
( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
export AUTHOR_TESTING=1
export RELEASE_TESTING=1
make test
)
}
package() {
cd "$srcdir/$_distdir"
make install
find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
}
# Local Variables:
# mode: shell-script
# sh-basic-offset: 2
# End:
# vim:set ts=2 sw=2 et:
|