summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 96f84b7b76a4ee59e37b66b47d21ab2c368bc9d7 (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
# CPAN Name  : XML::Compile
# Contributor: Anton Leontiev <scileont /at/ gmail.com>
# Generator  : CPANPLUS::Dist::Arch 1.32

pkgname=perl-xml-compile
pkgver=1.63
pkgrel=1
pkgdesc='Perl package providing compilation-based XML processing'
arch=('any')
url='https://metacpan.org/release/XML-Compile'
license=('PerlArtistic' 'GPL')
depends=('perl>=5.13.7'
	'perl-log-report>=1.20'
	'perl-types-serialiser'
	'perl-xml-compile-tester>=0.90'
	'perl-xml-libxml>=2.0107')
checkdepends=('perl-test-deep>=0.095')
source=(http://search.cpan.org/CPAN/authors/id/M/MA/MARKOV/XML-Compile-1.63.tar.gz)
options=(!emptydirs)
md5sums=('27746fbc05029e0a23086e1ed2a9c146')

sanitize() {
	unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
	export PERL_MM_USE_DEFAULT=1
}

build() {
	cd XML-Compile-1.63
	sanitize
	perl Makefile.PL INSTALLDIRS=vendor
	make
}

check() {
	cd XML-Compile-1.63
	sanitize
	make test
}

package() {
	cd XML-Compile-1.63
	sanitize
	make install DESTDIR="$pkgdir"
	find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
}