diff options
-rw-r--r-- | ack/.footprint | 3 | ||||
-rw-r--r-- | ack/.md5sum | 2 | ||||
-rw-r--r-- | ack/Pkgfile | 8 |
3 files changed, 9 insertions, 4 deletions
diff --git a/ack/.footprint b/ack/.footprint index e42af0a82..e7083688b 100644 --- a/ack/.footprint +++ b/ack/.footprint @@ -1,3 +1,6 @@ drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/ack +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/ack.1.gz diff --git a/ack/.md5sum b/ack/.md5sum index aa3e41a26..5e2adc0c9 100644 --- a/ack/.md5sum +++ b/ack/.md5sum @@ -1 +1 @@ -2b758af649bf26acd0d2e82d852d10d2 ack-standalone +8009a13ab0fc66047bea0ea2ad89419c ack diff --git a/ack/Pkgfile b/ack/Pkgfile index f13b8f662..0cdc73cd0 100644 --- a/ack/Pkgfile +++ b/ack/Pkgfile @@ -3,10 +3,12 @@ # Maintainer: Bartlomiej Palmowski, rotwang at crux dot org dot pl name=ack -version=1.86 +version=1.88 release=1 -source=(http://$name.googlecode.com/svn/tags/latest/$name-standalone) +source=(http://$name.googlecode.com/svn/tags/latest/$name) build() { - install -D -m 0755 $name-standalone $PKG/usr/bin/$name + install -D -m 0755 $name $PKG/usr/bin/$name + mkdir -p $PKG/usr/man/man1 + pod2man $name > $PKG/usr/man/man1/$name.1 } |