blob: 61305f7c27d308ae9481e75b72114132fde9537f (
plain)
1 # Description: DVD authoring tools.
2 # URL: http://dvdauthor.sourceforge.net/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: freetype fribidi libdvdnav libxml2
5 # Optional: imagemagick
6
7 name=dvdauthor
8 version=0.7.2
9 release=1
10 source=(https://sourceforge.net/projects/$name/files/$name-$version.tar.gz
11 dvdauthor-freetype_pkgconfig.patch
12 dvdauthor-0.7.2-imagemagick7.patch)
13
14 build() {
15 cd $name
16
17 patch -p1 -i $SRC/dvdauthor-freetype_pkgconfig.patch
18
19 prt-get isinst imagemagick && patch -p1 -i $SRC/dvdauthor-0.7.2-imagemagick7.patch
20
21 autoreconf -vi
22
23 ./configure --prefix=/usr
24
25 make
26 make DESTDIR=$PKG install
27 }
|