desktop/ack/PKGBUILD
Francesco Marinucci 6495ec81f2 ack update to 2.12
2014-03-31 16:01:51 +00:00

26 lines
691 B
Bash

# maintainer: Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
pkgname=ack
pkgver=2.12
pkgrel=1
pkgdesc="A Perl-based grep replacement, aimed at programmers with large trees of heterogeneous source code"
arch=('x86_64')
url="http://betterthangrep.com/"
license=('GPL' 'PerlArtistic')
depends=('perl-file-next')
options=('!emptydirs')
categories=('programming')
source=(http://search.cpan.org/CPAN/authors/id/P/PE/PETDANCE/$pkgname-$pkgver.tar.gz)
md5sums=('11e886ab0ec72173869a82e59227ddf2')
build() {
cd "$srcdir/$pkgname-$pkgver"
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}