blob: b40fc0bcc2adaba2c75ff823899b67d2dcd33278 (
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
|
# Automatically generated by apkbuild-cpan, template 1
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=perl-test-base
_pkgreal=Test-Base
pkgver=0.89
pkgrel=1
pkgdesc="A Data Driven Testing Framework"
url="https://metacpan.org/release/Test-Base/"
arch="noarch"
license="GPL PerlArtistic"
cpandepends="perl-spiffy"
cpanmakedepends=" perl-text-diff perl-algorithm-diff "
depends="$cpandepends"
makedepends="perl-dev $cpanmakedepends"
subpackages="$pkgname-doc"
source="https://cpan.metacpan.org/authors/id/I/IN/INGY/$_pkgreal-$pkgver.tar.gz"
builddir="$srcdir/$_pkgreal-$pkgver"
prepare() {
default_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
}
check() {
cd "$builddir"
make test
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete
}
sha512sums="c93756455e996622992fd2ec4fff70e6245704db918e087b177b4470cfdf73ef135409cba25bceeb8ef7876ab8e514e95e8c8d59fc74d3c7eafdb0cb79ef14d7 Test-Base-0.89.tar.gz"
|