Merge pull request #3324 from dkociela/dvdauth
dvdauthor: add build_options for default video format (NTSC or PAL)
This commit is contained in:
commit
110fd85615
1 changed files with 12 additions and 2 deletions
|
@ -2,11 +2,10 @@
|
||||||
|
|
||||||
pkgname="dvdauthor"
|
pkgname="dvdauthor"
|
||||||
version="0.7.1"
|
version="0.7.1"
|
||||||
revision=1
|
revision=2
|
||||||
patch_args="-Np1"
|
patch_args="-Np1"
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
wrksrc="$pkgname"
|
wrksrc="$pkgname"
|
||||||
configure_args="--enable-localize-filenames"
|
|
||||||
hostmakedepends="pkg-config"
|
hostmakedepends="pkg-config"
|
||||||
makedepends="libpng-devel freetype-devel fribidi-devel libxml2-devel libdvdnav-devel"
|
makedepends="libpng-devel freetype-devel fribidi-devel libxml2-devel libdvdnav-devel"
|
||||||
short_desc="DVD authoring tools, generate a DVD movie from MPEG2 stream"
|
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"
|
distfiles="${SOURCEFORGE_SITE}/dvdauthor/dvdauthor-${version}.tar.gz"
|
||||||
checksum="501fb11b09c6eb9c5a229dcb400bd81e408cc78d34eab6749970685023c51fe9"
|
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' "")"
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue