summaryrefslogtreecommitdiffstats
path: root/testing/perl-test-simple/APKBUILD
blob: 8122e47deb82d8c8fffc3f035f6a38c9fada455e (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
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
# Maintainer:
pkgname=perl-test-simple
_realname=Test-Simple
pkgver=0.98
pkgrel=0
pkgdesc="Perl modules for writing tests"
url="http://search.cpan.org/~mschwern/Test-Simple-0.98/"
arch="noarch"
license="PerlArtistic"
depends="perl"
depends_dev=""
makedepends="perl-dev"
install=""
subpackages="$pkgname-doc"
source="http://search.cpan.org/CPAN/authors/id/M/MS/MSCHWERN/$_realname-$pkgver.tar.gz"
_builddir="$srcdir"/$_realname-$pkgver

build() {
	cd "$_builddir"
	PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" install || return 1
	find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete
}

md5sums="a8b26c97440269b33dd79fd847c521d8  Test-Simple-0.98.tar.gz"