1
0
forked from ports/opt

vorbis-tools: initial import

This commit is contained in:
Tilman Sauerbeck 2005-11-23 16:13:46 +00:00
parent 72bfbdb0e0
commit ce1d769105
3 changed files with 40 additions and 0 deletions

18
vorbis-tools/.footprint Normal file
View File

@ -0,0 +1,18 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/ogg123
-rwxr-xr-x root/root usr/bin/oggdec
-rwxr-xr-x root/root usr/bin/oggenc
-rwxr-xr-x root/root usr/bin/ogginfo
-rwxr-xr-x root/root usr/bin/vcut
-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

1
vorbis-tools/.md5sum Normal file
View File

@ -0,0 +1 @@
47845fd76f5f2354a3619c4097575487 vorbis-tools-1.1.1.tar.gz

21
vorbis-tools/Pkgfile Normal file
View File

@ -0,0 +1,21 @@
# Description: tools used to create/alter ogg/vorbis files
# URL: http://www.vorbis.com/
# Packager: Matt Housh, jaeger at morpheus dot net
# Maintainer: Tilman Sauerbeck, tilman at code-monkey dot de
# Depends on: libao, libogg, libvorbis, curl
name=vorbis-tools
version=1.1.1
release=1
source=(http://downloads.xiph.org/releases/vorbis/$name-$version.tar.gz)
build() {
cd $name-$version
./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
}