blob: 12da23101ccd0d4c280268597653e41c393a1b89 (
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
|
# Automatically generated by apkbuild-cpan, template 1
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=perl-test2-suite
_pkgreal=Test2-Suite
pkgver=0.000058
pkgrel=0
pkgdesc="Distribution with a rich set of tools built upon the Test2 framework."
url="http://search.cpan.org/dist/Test2-Suite/"
arch="noarch"
license="GPL PerlArtistic"
cpandepends="perl-test-simple perl-importer"
cpanmakedepends=" "
depends="$cpandepends"
makedepends="perl-dev $cpanmakedepends"
subpackages="$pkgname-doc"
source="http://search.cpan.org/CPAN/authors/id/E/EX/EXODIST/$_pkgreal-$pkgver.tar.gz"
_builddir="$srcdir/$_pkgreal-$pkgver"
prepare() {
cd "$_builddir"
#export CFLAGS=`perl -MConfig -E 'say $Config{ccflags}'`
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
}
build() {
cd "$_builddir"
#export CFLAGS=`perl -MConfig -E 'say $Config{ccflags}'`
make && make test
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete
}
md5sums="e8afb4130ab0a175c1e1f5529db87bfc Test2-Suite-0.000058.tar.gz"
sha256sums="cd74724bb88fcc8fab5b31a1329e69aa4ea3cd4652a1e657a5f45ca71ef44cd1 Test2-Suite-0.000058.tar.gz"
sha512sums="30355d603a142c10b63db3d04c906dc6ecf91803757b5f01c820d1487d33a3dfd31bc3f56289670a3425f53d02de52bc71a1ca036680800e3b4387aab0c5651d Test2-Suite-0.000058.tar.gz"
|