blob: dab34107eec7e2cffe89383351bc661084a84487 (
plain)
1 # Description: DVD authoring tools.
2 # URL: http://dvdauthor.sourceforge.net/
3 # Maintainer: Danny Rawlins, monster dot romster at gmail dot com
4 # Packager: Matt Housh, jaeger at morpheus dot net
5 # Depends on: libxml2 libdvdnav libpng
6
7 name=dvdauthor
8 version=0.6.14
9 release=1
10 source=(http://downloads.sourceforge.net/sourceforge/dvdauthor/dvdauthor-$version.tar.gz)
11
12 build() {
13 cd dvdauthor-$version
14
15 ./configure \
16 --prefix=/usr \
17 --mandir=$PKG/usr/man
18
19 make
20 make prefix=$PKG/usr install
21 }
|