#Packager: Shador pkgname=dvdauthor pkgver=0.7.0 pkgrel=1ab source=("http://downloads.sourceforge.net/project/dvdauthor/dvdauthor/0.7.0/dvdauthor-0.7.0.tar.gz") sourcetemplate="http://gaia.homelinux.org/salix/slkbuilds/$pkgname/" docs=("readme" "install" "copying" "changelog" "authors" "todo") url='http://dvdauthor.sourceforge.net/' slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "$pkgname (a simple set of tools to help you author a DVD)" "A set of low-level tools to help you author a DVD. Start with a" "suitably-formatted MPEG stream (as created by various tools, such as" "FFmpeg or mjpegtools), and graphic images for your menus, and you can" "define buttons, chapters etc and turn the whole lot into a" "DVD-Video disc. " ) build() { set -e cd $startdir/src/$pkgname ./configure \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --localstatedir=/var \ --sysconfdir=/etc \ --mandir=/usr/man \ --docdir=/usr/doc/$pkgname-$pkgver/ \ --build=$arch-slackware-linux || return 1 make -j $numjobs || return 1 make install DESTDIR=$startdir/pkg || return 1 set +e }