15 lines
439 B
Plaintext
15 lines
439 B
Plaintext
# Description: tool like grep, aimed at programmers with large trees of heterogeneous source code
|
|
# URL: http://petdance.com/ack/
|
|
# Maintainer: Bartlomiej Palmowski, rotwang at crux dot org dot pl
|
|
|
|
name=ack
|
|
version=1.88
|
|
release=1
|
|
source=(http://$name.googlecode.com/svn/tags/latest/$name)
|
|
|
|
build() {
|
|
install -D -m 0755 $name $PKG/usr/bin/$name
|
|
mkdir -p $PKG/usr/man/man1
|
|
pod2man $name > $PKG/usr/man/man1/$name.1
|
|
}
|