blob: c154507f778925a15d200876bd8d991096ce22d9 (
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 <francesco.colista@gmail.com>
# Maintainer: Francesco Colista <francesco.colista@gmail.com>
pkgname=perl-dist-checkconflicts
_pkgreal=Dist-CheckConflicts
pkgver=0.09
pkgrel=0
pkgdesc="declare version conflicts for your dist"
url="http://search.cpan.org/dist/Dist-CheckConflicts/"
arch="noarch"
license="GPL PerlArtistic"
cpandepends="perl-list-moreutils perl-module-runtime"
cpanmakedepends=" perl-test-fatal "
depends="$cpandepends"
makedepends="perl-dev $cpanmakedepends"
subpackages="$pkgname-doc"
source="http://search.cpan.org/CPAN/authors/id/D/DO/DOY/$_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="2e298121df2d0dc134c36f16d5877233 Dist-CheckConflicts-0.09.tar.gz"
sha256sums="a0a238746b4f4605e96fd9852d55cf3b8dbbde01981b49a08e3b3858c2cc02ed Dist-CheckConflicts-0.09.tar.gz"
sha512sums="073fbc12d5d02d91dd51e175b0ccf033227446bd4d691e1822041f2bbe8c2ec30bfb90d05e60abfe8ae398a8e5e7453b3d414cd1dbe7c019cf73a15bf0439b50 Dist-CheckConflicts-0.09.tar.gz"
|