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

This commit is contained in:
Juergen Daubert 2015-07-25 19:33:44 +02:00
parent 46b324a058
commit 3fd3a9514c
2 changed files with 7 additions and 6 deletions

View File

@ -5,7 +5,8 @@ drwxr-xr-x root/root usr/bin/
lrwxrwxrwx root/root usr/bin/nm86 -> objdump86
-rwxr-xr-x root/root usr/bin/objdump86
lrwxrwxrwx root/root usr/bin/size86 -> objdump86
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/as86.1.gz
-rw-r--r-- root/root usr/man/man1/ld86.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/as86.1.gz
-rw-r--r-- root/root usr/share/man/man1/ld86.1.gz

View File

@ -12,6 +12,6 @@ build() {
cd $name-$version
patch -p1 -i $SRC/$name-x86_64.patch
make -j1 CFLAGS="$CFLAGS -D_POSIX_SOURCE" PREFIX=/usr
mkdir -p $PKG/usr/{bin,man/man1}
make PREFIX=$PKG/usr install
install -d $PKG/usr/{bin,share/man/man1}
make PREFIX=$PKG/usr MANDIR=$PKG/usr/share/man/man1 install
}