mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-17 22:02:12 +01:00
41 lines
927 B
Plaintext
41 lines
927 B
Plaintext
# Contributor: Timo Teräs <timo.teras@iki.fi>
|
|
# Maintainer: Timo Teräs <timo.teras@iki.fi>
|
|
pkgname=libdvdnav
|
|
pkgver=4.2.0
|
|
pkgrel=0
|
|
pkgdesc="a library for sophisticated DVD navigation features"
|
|
url="http://dvdnav.mplayerhq.hu/"
|
|
arch="all"
|
|
license="GPL"
|
|
depends=""
|
|
depends_dev="libdvdread-dev"
|
|
makedepends="$depends_dev"
|
|
install=""
|
|
subpackages="$pkgname-dev"
|
|
source="http://dvdnav.mplayerhq.hu/releases/$pkgname-$pkgver.tar.bz2"
|
|
|
|
_builddir="$srcdir"/libdvdnav-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure2 --prefix=/usr --disable-static --disable-debug --enable-shared || return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
rm -f "$pkgdir"/usr/lib/*.la
|
|
}
|
|
|
|
md5sums="53be8903f9802e101929a3451203bbf6 libdvdnav-4.2.0.tar.bz2"
|