blob: ee3d23e5df9ecc1d2a71609deba26d034dc964d8 (
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
|
# Contributor (Arch): Blaž Tomažič <blaz.tomazic@gmail.com>
# Maintainer : Parabola GNU / Linux-libre Aurelien Desbrieres <aurelien@cwb.io>
# Contributor : Márcio Silva <coadde@parabola.nu>
pkgname=perl-file-find-rule
_realname=File-Find-Rule
pkgver=0.33
pkgrel=3
pkgdesc="Perl/CPAN Module File::Find::Rule."
arch=('i686' 'x86_64' 'mips64el')
license=('GPL1')
url="http://search.cpan.org/dist/File-Find-Rule"
depends=('perl-text-glob' 'perl-number-compare' 'perl')
options=(!emptydirs)
source=(http://search.cpan.org/CPAN/authors/id/R/RC/RCLAMP/${_realname}-${pkgver}.tar.gz)
md5sums=(92c6cb88549c30f5665e39bf80f3d704)
build() {
cd $srcdir/${_realname}-$pkgver
# install module in vendor directories.
perl Makefile.PL INSTALLDIRS=vendor || return 1
make || return 1
}
package() {
cd $srcdir/${_realname}-$pkgver
make install DESTDIR=$pkgdir || return 1
# remove perllocal.pod and .packlist
find $pkgdir -name perllocal.pod -delete
find $pkgdir -name .packlist -delete
}
|