libdvdnav: cross build support.

This commit is contained in:
Juan RP 2013-12-18 15:24:19 +01:00
parent 10f949c418
commit 12bc14d882

View file

@ -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
}
}