summaryrefslogtreecommitdiff
path: root/pcr/perl-file-find-rule/PKGBUILD
blob: 3c56a610bd13d5f96e58ac9e271e497214a44af1 (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
# Contributor (Arch): Blaž Tomažič <blaz.tomazic@gmail.com>
# Maintainer : Parabola GNU / Linux-libre Aurelien Desbrieres <aurelien@cwb.io>

pkgname=perl-file-find-rule
_realname=File-Find-Rule
pkgver=0.33
pkgrel=1
pkgdesc="Perl/CPAN Module File::Find::Rule."
arch=('i686' 'x86_64' 'mips64el')
license=('GPL')
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)

build() {
  cd $startdir/src/${_realname}-$pkgver
  # install module in vendor directories.
  perl Makefile.PL INSTALLDIRS=vendor || return 1
  make  || return 1
  make install DESTDIR=${startdir}/pkg || return 1

  # remove perllocal.pod and .packlist
  find ${startdir}/pkg -name perllocal.pod -delete
  find ${startdir}/pkg -name .packlist -delete
}