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

pkgname=perl-inline-c
pkgver=0.78
pkgrel=1
pkgdesc='Perl module providing a way to write Perl subroutines in C'
arch=('any')
url='https://metacpan.org/release/Inline-C'
license=('PerlArtistic' 'GPL')
options=(!emptydirs)
depends=(
	'perl>=5.21.6'
	'perl-inline>=0.79'
	'perl-parse-recdescent>=1.967009'
	'perl-pegex>=0.58')
checkdepends=(
	'perl-file-copy-recursive'
	'perl-io-all'
	'perl-test-warn>=0.23'
	'perl-yaml-libyaml')
source=(http://search.cpan.org/CPAN/authors/id/T/TI/TINITA/Inline-C-0.78.tar.gz)
md5sums=('710a454b5337b1cbf3f2ae5c8c45b413')

build() {
	cd Inline-C-0.78
	unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
	export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
	/usr/bin/perl Makefile.PL INSTALLDIRS=vendor
	make
}

check() {
	cd Inline-C-0.78
	unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
	export PERL_MM_USE_DEFAULT=1
	make test
}

package() {
	cd Inline-C-0.78
	unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
	make install DESTDIR="$pkgdir"
	find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
}