diff options
author | Fredrik Rinnestam <fredrik@crux.nu> | 2015-07-25 23:42:10 +0200 |
---|---|---|
committer | Fredrik Rinnestam <fredrik@crux.nu> | 2015-07-25 23:42:10 +0200 |
commit | 1983b9b06865ef98671e22206485fea3b9c9faf5 (patch) | |
tree | f93ed1f1cadb1c417052f0412a1d3a5e1a2c62d4 /findutils | |
parent | ce6cc0c2537fcdbdc8a564dbdcfbb5fcfedf1098 (diff) | |
download | core-1983b9b06865ef98671e22206485fea3b9c9faf5.tar.gz core-1983b9b06865ef98671e22206485fea3b9c9faf5.tar.xz |
findutils: move man-pages to /usr/share/man
Diffstat (limited to 'findutils')
-rw-r--r-- | findutils/.footprint | 9 | ||||
-rw-r--r-- | findutils/Pkgfile | 9 |
2 files changed, 9 insertions, 9 deletions
diff --git a/findutils/.footprint b/findutils/.footprint index 9635d06d..0b3f76cd 100644 --- a/findutils/.footprint +++ b/findutils/.footprint @@ -3,7 +3,8 @@ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/find -rwxr-xr-x root/root usr/bin/oldfind -rwxr-xr-x root/root usr/bin/xargs -drwxr-xr-x root/root usr/man/ -drwxr-xr-x root/root usr/man/man1/ --rw-r--r-- root/root usr/man/man1/find.1.gz --rw-r--r-- root/root usr/man/man1/xargs.1.gz +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/find.1.gz +-rw-r--r-- root/root usr/share/man/man1/xargs.1.gz diff --git a/findutils/Pkgfile b/findutils/Pkgfile index defadd4b..41fd093f 100644 --- a/findutils/Pkgfile +++ b/findutils/Pkgfile @@ -4,17 +4,16 @@ name=findutils version=4.4.2 -release=1 +release=2 source=(http://ftp.gnu.org/pub/gnu/$name/$name-$version.tar.gz) build() { cd $name-$version ./configure --prefix=/usr \ - --disable-nls \ - --mandir=/usr/man + --disable-nls make make DESTDIR=$PKG install rm $PKG/usr/bin/{updatedb,locate} - rm $PKG/usr/man/man1/{updatedb.1,locate.1} - rm -r $PKG/usr/{libexec,share,var,man/man5} + rm $PKG/usr/share/man/man1/{updatedb.1,locate.1} + rm -r $PKG/usr/{libexec,var,share/{info,man/man5}} } |