tig: no installation of man pages due to asciidoc dependency

This commit is contained in:
Thomas Penteker 2013-09-28 19:55:20 +02:00
parent b5311c338b
commit 55dd389ff6
3 changed files with 7 additions and 14 deletions

View File

@ -1,10 +1,3 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/tig
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/tig.1.gz
drwxr-xr-x root/root usr/man/man5/
-rw-r--r-- root/root usr/man/man5/tigrc.5.gz
drwxr-xr-x root/root usr/man/man7/
-rw-r--r-- root/root usr/man/man7/tigmanual.7.gz

View File

@ -1 +1 @@
9dec2966d3d51f7d8b5b8d4a4b8d93eb tig-1.2.1.tar.gz
d5c1dd1d829f8e515f59c96a5d419323 tig-1.2.1.tar.gz

View File

@ -15,10 +15,10 @@ build() {
./configure --prefix=/usr --mandir=/usr/man --sysconfdir=/etc
make LDLIBS=-lncursesw
make prefix=/usr DESTDIR=$PKG install #install-doc-man
# work around possibly missing asciidoc
for i in 1 5 7; do
install -m 755 -d $PKG/usr/man/man${i}
install -m 644 *.${i} $PKG/usr/man/man${i}
done
make prefix=/usr DESTDIR=$PKG install
# tig requires asciidoc for building man pages...
#for i in 1 5 7; do
# install -m 755 -d $PKG/usr/man/man${i}
# install -m 644 *.${i} $PKG/usr/man/man${i}
#done
}