26 lines
534 B
Plaintext
26 lines
534 B
Plaintext
# 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
|
|
version=1.3.3
|
|
release=1
|
|
source=(https://downloads.xiph.org/releases/flac/flac-$version.tar.xz)
|
|
|
|
build() {
|
|
cd flac-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32 \
|
|
--host=i686-pc-linux-gnu \
|
|
--with-ogg-libraries=/usr/lib32
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/{bin,include,share/{aclocal,doc,man}}
|
|
rmdir $PKG/usr/share
|
|
}
|