blob: d4093727725b78ab39094e6848a5a1e53d8f9ca8 (
plain)
1 # Description: A free DTS Coherent Acoustics decoder. (early development stage)
2 # URL: http://www.videolan.org/developers/libdca.html
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Packager: Han Boetes, han at mijncomputer dot nl
5 # Depends on:
6
7 name=libdca
8 version=0.0.5
9 release=2
10 source=(http://download.videolan.org/pub/videolan/libdca/$version/libdca-$version.tar.bz2)
11
12 build() {
13 cd libdca-$version
14
15 sed -i configure -e 's/-mtune=pentiumpro//'
16
17 ./configure \
18 --prefix=/usr \
19 --mandir=/usr/man \
20 --disable-static \
21 --disable-nls
22
23 make
24 make DESTDIR=$PKG install
25 }
|