mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
32 lines
835 B
Bash
32 lines
835 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer: Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=ack
|
|
pkgver=2.10
|
|
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=('4581d79ecb12b544f363f0f162aaaeb5')
|
|
|
|
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
|
|
}
|