mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 11:02:13 +08:00
26 lines
691 B
Bash
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
|
|
}
|