wget: move man-pages to /usr/share/man

This commit is contained in:
Fredrik Rinnestam 2015-07-25 20:45:13 +02:00
parent 14b020b1e8
commit c66434fb42
2 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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
}