![](https://secure.gravatar.com/avatar/df8330968b6df8cd1c1942c5fb4b720c.jpg?s=120&d=mm&r=g)
commit c66434fb42d9ff58e712feb50310922e0180ae6d Author: Fredrik Rinnestam <fredrik@crux.nu> Date: Sat Jul 25 20:45:13 2015 +0200 wget: move man-pages to /usr/share/man diff --git a/wget/.footprint b/wget/.footprint index c71150c..9b4e7ad 100644 --- a/wget/.footprint +++ b/wget/.footprint @@ -3,6 +3,7 @@ drwxr-xr-x root/root etc/ drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/wget -drwxr-xr-x root/root usr/man/ -drwxr-xr-x root/root usr/man/man1/ --rw-r--r-- root/root usr/man/man1/wget.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/wget.1.gz diff --git a/wget/Pkgfile b/wget/Pkgfile index b66dc1d..8b77f39 100644 --- a/wget/Pkgfile +++ b/wget/Pkgfile @@ -5,7 +5,7 @@ name=wget version=1.16.3 -release=1 +release=2 source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.xz \ wgetrc) @@ -14,7 +14,6 @@ build() { ./configure --prefix=/usr \ --sysconfdir=/etc \ - --mandir=/usr/man \ --disable-debug \ --disable-nls \ --with-ssl=openssl @@ -23,5 +22,5 @@ build() { make DESTDIR=$PKG install install -D -m 644 $SRC/wgetrc $PKG/etc/wgetrc - rm -r $PKG/usr/share + rm -r $PKG/usr/share/info }