compat-32/flac-32/Pkgfile

30 lines
614 B
Plaintext
Raw Normal View History

2013-08-10 13:14:57 +02:00
# Description: Free Lossless Audio Codec.
# URL: http://xiph.org/flac/
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
# Depends on: libogg-32
name=flac-32
2014-07-02 10:31:30 +02:00
version=1.3.0
release=1
source=(http://downloads.xiph.org/releases/flac/flac-$version.tar.xz
flac-realloc.patch)
2013-08-10 13:14:57 +02:00
build() {
cd flac-$version
2014-07-02 10:31:30 +02:00
patch -p1 -i $SRC/flac-realloc.patch
2013-08-10 13:14:57 +02:00
./configure \
--prefix=/usr \
2014-07-02 10:31:30 +02:00
--libdir=/usr/lib32 \
--mandir=/usr/man \
--host=i686-pc-linux-gnu \
--with-ogg-libraries=/usr/lib32
2013-08-10 13:14:57 +02:00
make
make DESTDIR=$PKG install
rm -r $PKG/usr/{bin,man,include,share/{doc,aclocal}}
rmdir $PKG/usr/share
}