yasm: fixed mandir location

This commit is contained in:
Jose V Beneyto 2016-01-20 23:21:44 +00:00
parent 6170c1b4f3
commit 3af63cda8e
2 changed files with 13 additions and 11 deletions

View File

@ -36,11 +36,12 @@ drwxr-xr-x root/root usr/include/libyasm/
-rw-r--r-- root/root usr/include/libyasm/value.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libyasm.a
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/yasm.1.gz
drwxr-xr-x root/root usr/man/man7/
-rw-r--r-- root/root usr/man/man7/yasm_arch.7.gz
-rw-r--r-- root/root usr/man/man7/yasm_dbgfmts.7.gz
-rw-r--r-- root/root usr/man/man7/yasm_objfmts.7.gz
-rw-r--r-- root/root usr/man/man7/yasm_parsers.7.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/yasm.1.gz
drwxr-xr-x root/root usr/share/man/man7/
-rw-r--r-- root/root usr/share/man/man7/yasm_arch.7.gz
-rw-r--r-- root/root usr/share/man/man7/yasm_dbgfmts.7.gz
-rw-r--r-- root/root usr/share/man/man7/yasm_objfmts.7.gz
-rw-r--r-- root/root usr/share/man/man7/yasm_parsers.7.gz

View File

@ -5,13 +5,14 @@
name=yasm
version=1.3.0
release=1
release=2
source=(http://www.tortall.net/projects/yasm/releases/$name-$version.tar.gz)
build () {
cd $name-$version
./configure --prefix=/usr \
--mandir=/usr/man
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}