Merge pull request #3324 from dkociela/dvdauth

dvdauthor: add build_options for default video format (NTSC or PAL)
This commit is contained in:
Juan RP 2016-01-08 08:30:37 +01:00
commit 110fd85615

View file

@ -2,11 +2,10 @@
pkgname="dvdauthor"
version="0.7.1"
revision=1
revision=2
patch_args="-Np1"
build_style=gnu-configure
wrksrc="$pkgname"
configure_args="--enable-localize-filenames"
hostmakedepends="pkg-config"
makedepends="libpng-devel freetype-devel fribidi-devel libxml2-devel libdvdnav-devel"
short_desc="DVD authoring tools, generate a DVD movie from MPEG2 stream"
@ -16,3 +15,14 @@ homepage="http://dvdauthor.sourceforge.net/"
distfiles="${SOURCEFORGE_SITE}/dvdauthor/dvdauthor-${version}.tar.gz"
checksum="501fb11b09c6eb9c5a229dcb400bd81e408cc78d34eab6749970685023c51fe9"
build_options="NTSC PAL"
build_options_default="PAL"
desc_option_NTSC="Enable default video format NTSC"
desc_option_PAL="Enable default video format PAL"
vopt_conflict NTSC PAL
configure_args="--enable-localize-filenames \
$(vopt_if NTSC '--enable-default-video-format=NTSC' "" ) \
$(vopt_if PAL '--enable-default-video-format=PAL' "")"