#Maintainer: George Vlahavas (vlahavas~at~gmail.com, gapan@zenwalk forums) pkgname=vorbis-tools pkgver=r14788 pkgrel=1 zenver=52 arch=i486 source=("http://users.zenwalk.org/user-accounts/gapan/vorbis-tools/vorbis-tools-r14788.tar.bz2") docs=("readme" "install" "copying" "changelog" "authors" "news" "todo" "maintainers" "license*" "hacking") url=http://www.vorbis.com/ options=('norequiredbuilder' 'keepdepfile') slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "vorbis-tools (Ogg Vorbis Tools)" "The vorbis-tools package contains several basic tools for working with" "compressed audio files in the Ogg Vorbis (.ogg) format:" "" "oggenc (an .ogg encoder), ogg123 (a playback tool), vorbiscomment" "(add comments to vorbis files), ogginfo (show information about an" "ogg file), oggdec (a command line decoder), and vcut (a tool for" "splitting vorbis files)." "" "These tools require the libao, libogg, and libvorbis libraries." ) build() { cd $startdir/src/$pkgname-$pkgver ./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc --without-speex make || return 1 make install DESTDIR=$startdir/pkg # No idea why this isn't built automatically any more... if [ ! -r $startdir/pkg/usr/bin/vcut ]; then ( cd vcut make make install DESTDIR=$PKG ) fi }