# Description: DVD reading library.
# URL: https://www.videolan.org/developers/libdvdnav.html
# Maintainer: John McQuah, jmcquah at disroot dot org
# Depends on: libdvdcss

name=libdvdread
version=6.1.3
release=1
source=(https://download.videolan.org/pub/videolan/$name/$version/$name-$version.tar.bz2)

build() {
	cd $name-$version

	autoreconf -f -i

	./configure \
		--prefix=/usr \
		--disable-apidoc

	make
	make DESTDIR=$PKG install

	rm -rf $PKG/usr/share
}
