blob: 912824a0ea8a3f8192af8566ec175057773fa784 (
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
|
# Maintainer: Erich Eckner <arch at eckner dot net>
pkgname='perl-encoding-fixlatin-xs'
pkgver='1.01'
pkgrel=8
pkgdesc='XS implementation layer for Encoding::FixLatin'
arch=('i686' 'pentium4' 'x86_64')
license=('PerlArtistic' 'GPL')
options=('!emptydirs')
depends=(
'perl>=5.30'
'perl<5.31'
'perl-encoding-fixlatin>=1.03')
makedepends=(
'perl-extutils-makemaker>=6.30'
'perl-test-simple>=0.90')
url='http://github.com/grantm/encoding-fixlatin-xs'
checkdepends=(
'perl-test-pod'
'perl-test-simple'
)
_distdir="Encoding-FixLatin-XS-${pkgver}"
source=("http://search.cpan.org/CPAN/authors/id/G/GR/GRANTM/${_distdir}.tar.gz")
sha512sums=('d9aafa94c884b11f64b29eda89389c823a8849db99b25e58e890fc2e1b9fdb5ed2fc025491e4d9cb9b4d4f17f8a70ab069de4b56c0c8935387652a1293fca4e4')
build() {
( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
PERL_AUTOINSTALL=--skipdeps \
PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
MODULEBUILDRC=/dev/null
cd "$srcdir/$_distdir"
/usr/bin/perl Makefile.PL
make
)
}
check() {
cd "$srcdir/$_distdir"
( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
export RELEASE_TESTING=1
make test
)
}
package() {
cd "$srcdir/$_distdir"
make install
find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
}
# Local Variables:
# mode: shell-script
# sh-basic-offset: 2
# End:
# vim:set ts=2 sw=2 et:
|