# Description: A free DTS Coherent Acoustics decoder. (early development stage)
# URL: http://developers.videolan.org/libdca.html
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
# Packager: Han Boetes, han at mijncomputer dot nl
# Depends on:

name=libdca
version=0.0.5
release=1
source=(http://download.videolan.org/pub/videolan/libdca/$version/libdca-$version.tar.bz2)

build() {
	cd libdca-$version

	./configure \
		--prefix=/usr \
		--mandir=/usr/man \
		--disable-static \
		--disable-nls

	make
	make DESTDIR=$PKG install
}

