blob: b49abac7695d5f43cc5df641c0d08b2c043dc0cb (
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
|
# CPAN Name: Text-Glob
# Contributor (Arch): Alan Young <harleypig@gmail.com>
# Generator (Arch): CPANPLUS::Dist::Arch 1.21
# Maintainer: Parabola GNU / Linux-libre Aurelien Desbrieres <aurelien@cwb.io>
# Contributor: Márcio Silva <coadde@parabola.nu>
pkgname='perl-text-glob'
pkgver='0.09'
pkgrel='4'
pkgdesc="match globbing patterns against text"
arch=('any')
license=('GPL1')
options=('!emptydirs')
depends=('perl')
makedepends=('perl-module-build')
url='http://search.cpan.org/dist/Text-Glob'
source=("http://search.cpan.org/CPAN/authors/id/R/RC/RCLAMP/Text-Glob-$pkgver.tar.gz")
md5sums=('1daa10e087f891c49b720a5c551a024b')
sha512sums=('9b729e4ece88ad79e1b637c7f35e5e1ecae3fd7f62c408ed4f3fcac2e8e8afff32d7d805e1b0269800aada5ae609d03335d42ac54def2797d301e91fa488ae47')
_distdir="Text-Glob-$pkgver"
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 Build.PL
/usr/bin/perl Build
)
}
check() {
cd $srcdir/"$_distdir"
( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
/usr/bin/perl Build test
)
}
package() {
cd $srcdir/"$_distdir"
/usr/bin/perl Build 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:
|