27 lines
521 B
Plaintext
27 lines
521 B
Plaintext
# Description: Free Lossless Audio Codec.
|
|
# URL: http://xiph.org/flac/
|
|
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
|
|
# Packager: Matt Housh, jaeger at morpheus dot net
|
|
# Depends on: libogg
|
|
|
|
name=flac
|
|
version=1.3.0
|
|
release=1
|
|
source=(http://downloads.xiph.org/releases/flac/$name-$version.tar.xz
|
|
flac-realloc.patch)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
patch -p1 -i $SRC/flac-realloc.patch
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/man
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/doc
|
|
}
|