contrib/dvdauthor/Pkgfile

28 lines
616 B
Plaintext
Raw Normal View History

2023-08-18 20:03:26 +02:00
# Description: DVD authoring tools
# URL: https://dvdauthor.sourceforge.net/
# Maintainer: unmaintained
2017-11-01 13:35:12 +01:00
# Depends on: freetype fribidi libdvdnav libxml2
2019-10-13 11:26:55 +02:00
# Optional: imagemagick
2007-10-30 22:33:47 +01:00
name=dvdauthor
2019-10-13 11:26:55 +02:00
version=0.7.2
release=1
source=(https://sourceforge.net/projects/$name/files/$name-$version.tar.gz
2023-08-18 20:03:26 +02:00
dvdauthor-freetype_pkgconfig.patch
dvdauthor-0.7.2-imagemagick7.patch)
2007-10-30 22:33:47 +01:00
build() {
2023-08-18 20:03:26 +02:00
cd $name
2007-10-30 22:40:02 +01:00
2023-08-18 20:03:26 +02:00
patch -p1 -i $SRC/dvdauthor-freetype_pkgconfig.patch
2016-03-17 06:41:47 +01:00
2023-08-18 20:03:26 +02:00
prt-get isinst imagemagick && patch -p1 -i $SRC/dvdauthor-0.7.2-imagemagick7.patch
2019-10-13 11:26:55 +02:00
2023-08-18 20:03:26 +02:00
autoreconf -vi
2019-10-13 11:26:55 +02:00
2023-08-18 20:03:26 +02:00
./configure --prefix=/usr
2007-10-30 22:40:02 +01:00
2023-08-18 20:03:26 +02:00
make
make DESTDIR=$PKG install
2007-10-30 22:33:47 +01:00
}