blob: e84295e8f94486ac01cb7040b607c57d897c9811 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Maintainer: Erich Eckner <arch at eckner dot net>
# CPAN Name : Inline::C
# Contributor: Anton Leontiev <bunder /at/ t-25.ru>
# Generator : CPANPLUS::Dist::Arch 1.30
pkgname=perl-inline-c
pkgver=0.76
pkgrel='8'
_distdir="Inline-C-${pkgver}"
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.28'
'perl<5.29'
'perl-extutils-makemaker>=7.00'
'perl-inline>=0.79'
'perl-parse-recdescent>=1.967009'
'perl-pathtools>=0.8'
'perl-pegex>=0.58')
makedepends=(
'perl-autodie'
'perl-file-copy-recursive'
'perl-file-sharedir-install>=0.06'
'perl-io-all'
'perl-test-simple>=0.88'
'perl-test-warn>=0.23'
'perl-version>=0.77'
'perl-yaml-libyaml')
checkdepends=(
'perl-file-copy-recursive'
'perl-io-all'
'perl-test-pod'
'perl-test-warn>=0.23'
'perl-yaml-libyaml')
source=(http://search.cpan.org/CPAN/authors/id/I/IN/INGY/${_distdir}.tar.gz)
sha512sums=('43bf0bc6addf08c4c3347b074babdc514b1d6cee052d1124c5d9d4a4b52bd0e92ac79f8393f35252a98ef337fb18a9da47cdf545b1010b3f0d9c4b7fd9eb8c6d')
build() {
cd ${_distdir}
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 ${_distdir}
unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
export PERL_MM_USE_DEFAULT=1
export PERL_INLINE_DEVELOPER_TEST=1
export RELEASE_TESTING=1
make test
}
package() {
cd ${_distdir}
unset PERL5LIB PERL_MM_OPT PERL_LOCAL_LIB_ROOT
make install DESTDIR="$pkgdir"
find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
}
|