1
0
forked from ports/opt

vorbis-tools: fixed mandir location

This commit is contained in:
Jose V Beneyto 2016-01-21 00:36:05 +00:00
parent a0849c0ac1
commit dbaa659719
2 changed files with 15 additions and 11 deletions

View File

@ -8,11 +8,12 @@ drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/vorbiscomment
drwxr-xr-x root/root usr/etc/
-rw-r--r-- root/root usr/etc/ogg123rc-example
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/ogg123.1.gz
-rw-r--r-- root/root usr/man/man1/oggdec.1.gz
-rw-r--r-- root/root usr/man/man1/oggenc.1.gz
-rw-r--r-- root/root usr/man/man1/ogginfo.1.gz
-rw-r--r-- root/root usr/man/man1/vcut.1.gz
-rw-r--r-- root/root usr/man/man1/vorbiscomment.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/ogg123.1.gz
-rw-r--r-- root/root usr/share/man/man1/oggdec.1.gz
-rw-r--r-- root/root usr/share/man/man1/oggenc.1.gz
-rw-r--r-- root/root usr/share/man/man1/ogginfo.1.gz
-rw-r--r-- root/root usr/share/man/man1/vcut.1.gz
-rw-r--r-- root/root usr/share/man/man1/vorbiscomment.1.gz

View File

@ -6,17 +6,20 @@
name=vorbis-tools
version=1.4.0
release=1
release=2
source=(http://downloads.xiph.org/releases/vorbis/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr --mandir=/usr/man --disable-nls --enable-vcut
./configure --prefix=/usr \
--disable-nls \
--enable-vcut
make
make DESTDIR=$PKG install
mkdir $PKG/usr/etc
mv $PKG/usr/share/doc/$name-$version/ogg123rc-example $PKG/usr/etc
rm -rf $PKG/usr/share
rm -rf $PKG/usr/share/doc
}