From 4a05085abfc9332658220e24d3bc03d0e15ef47e Mon Sep 17 00:00:00 2001 From: Fredrik Rinnestam Date: Sun, 26 Jul 2015 00:03:54 +0200 Subject: [PATCH] cpio: move man-pages to /usr/share/man --- cpio/.footprint | 7 ++++--- cpio/Pkgfile | 7 +++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/cpio/.footprint b/cpio/.footprint index 635fa767..69be5a4d 100644 --- a/cpio/.footprint +++ b/cpio/.footprint @@ -1,6 +1,7 @@ drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/cpio -drwxr-xr-x root/root usr/man/ -drwxr-xr-x root/root usr/man/man1/ --rw-r--r-- root/root usr/man/man1/cpio.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/cpio.1.gz diff --git a/cpio/Pkgfile b/cpio/Pkgfile index fc080aa4..1e93e249 100644 --- a/cpio/Pkgfile +++ b/cpio/Pkgfile @@ -4,7 +4,7 @@ name=cpio version=2.11 -release=2 +release=3 source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2) build() { @@ -12,10 +12,9 @@ build() { # fix for glibc 'gets' removal sed -i -e '/gets is a/d' gnu/stdio.in.h ./configure --prefix=/usr \ - --mandir=/usr/man \ --disable-nls make make DESTDIR=$PKG install - rm -r $PKG/usr/{share,libexec} - rm $PKG/usr/man/man1/mt.1 + rm -r $PKG/usr/{libexec,share/info} + rm $PKG/usr/share/man/man1/mt.1 }