#Packager: George Vlahavas pkgname=dvdauthor pkgver=0.7.1 pkgrel=2gv source=("http://downloads.sourceforge.net/project/dvdauthor/dvdauthor/$pkgver/dvdauthor-$pkgver.tar.gz" "config.patch") 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() { cd $startdir/src/$pkgname ( cd src patch -p 0 < $startdir/src/config.patch || exit 1 ) ./configure \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --localstatedir=/var \ --sysconfdir=/etc \ --mandir=/usr/man \ --build=$arch-slackware-linux || return 1 make || return 1 make install DESTDIR=$startdir/pkg || return 1 }