2011-01-04 03:08:03 +08:00
|
|
|
#
|
|
|
|
# Games Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
|
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
|
|
|
|
|
|
# include global config
|
|
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
|
2011-04-03 18:41:32 +08:00
|
|
|
pkgname=perl-file-which
|
|
|
|
_pkgname=File-Which
|
|
|
|
pkgver=1.09
|
2011-01-04 03:08:03 +08:00
|
|
|
pkgrel=1
|
2011-04-03 18:41:32 +08:00
|
|
|
pkgdesc="Portable implementation of which."
|
|
|
|
arch=('any')
|
2011-01-04 03:08:03 +08:00
|
|
|
license=('PerlArtistic' 'GPL')
|
|
|
|
options=('!emptydirs')
|
|
|
|
depends=('perl' 'perl-class-inspector')
|
2011-04-03 18:41:32 +08:00
|
|
|
url='http://search.cpan.org/dist/File-Which/'
|
2011-01-04 03:08:03 +08:00
|
|
|
source=("http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/$_pkgname-$pkgver.tar.gz")
|
2011-04-03 18:41:32 +08:00
|
|
|
md5sums=('b9429edaad7f45caafa4d458afcfd8af')
|
2011-01-04 03:08:03 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $srcdir/$_pkgname-$pkgver
|
|
|
|
|
|
|
|
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
|
|
|
|
make
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd $srcdir/$_pkgname-$pkgver
|
|
|
|
|
|
|
|
make install DESTDIR="$pkgdir/"
|
|
|
|
|
|
|
|
# Remove perllocal.pod and .packlist:
|
|
|
|
find "$pkgdir" -name perllocal.pod -delete
|
|
|
|
find "$pkgdir" -name .packlist -delete
|
|
|
|
}
|