From 12bc14d8826c14d60c8dbaf2addf165ad0dbac03 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Wed, 18 Dec 2013 15:24:19 +0100 Subject: [PATCH] libdvdnav: cross build support. --- srcpkgs/libdvdnav/template | 25 ++++++++++--------------- 1 file changed, 10 insertions(+), 15 deletions(-) diff --git a/srcpkgs/libdvdnav/template b/srcpkgs/libdvdnav/template index fb1f4da269c..3182fb98833 100644 --- a/srcpkgs/libdvdnav/template +++ b/srcpkgs/libdvdnav/template @@ -1,8 +1,9 @@ # Template file for 'libdvdnav' pkgname=libdvdnav version=4.2.0 -revision=2 +revision=3 build_style=gnu-configure +configure_args="--with-dvdread-config=/bin/true" hostmakedepends="libtool automake" makedepends="libdvdread-devel" short_desc="Library to navigate DVDs" @@ -11,34 +12,28 @@ license="GPL-2" homepage="http://dvdnav.mplayerhq.hu/" distfiles="http://dvdnav.mplayerhq.hu/releases/$pkgname-$version.tar.bz2" checksum=8c971b08276c89ddcecd26fc44204460fd250dc57346f03476d3077188c47550 -long_desc=" - libdvdnav is a library that allows easy use of sophisticated DVD navigation - features such as DVD menus, multiangle playback and even interactive DVD - games. All this functionality is provided through a simple API which - provides the DVD playback as a single logical stream of blocks, intermitted - by special dvdnav events to report certain conditions. The main usage of - libdvdnav is a loop regularly calling a function to get the next block, - surrounded by additional calls to tell the library of user interaction. - The whole DVD virtual machine and internal playback states are completely - encapsulated." + +CFLAGS+="-I${XBPS_CROSS_BASE}/usr/include" +LDFLAGS+="-L${XBPS_CROSS_BASE}/usr/lib -ldvdread" pre_configure() { - ./autogen.sh + NOCONFIGURE=1 ./autogen.sh } libdvdnav-devel_package() { - depends="libdvdread-devel libdvdnav>=${version}" - short_desc+=" -- development files" + depends="libdvdread-devel libdvdnav>=${version}_${revision}" + short_desc+=" - development files" pkg_install() { vmove usr/bin vmove usr/include vmove usr/share vmove usr/lib/pkgconfig + vmove "usr/lib/*.so" } } libdvdnav_package() { pkg_install() { - vmove usr + vmove all } }