opt/flac/Pkgfile

34 lines
671 B
Plaintext
Raw Normal View History

2012-06-20 21:58:16 +02:00
# Description: Free Lossless Audio Codec.
# URL: https://xiph.org/flac/
2014-11-10 13:25:50 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
2006-02-23 16:26:10 +01:00
# Depends on: libogg
name=flac
2022-09-11 17:06:14 +02:00
version=1.4.0
2022-03-05 17:22:09 +01:00
release=1
source=(https://downloads.xiph.org/releases/flac/$name-$version.tar.xz)
2006-02-23 16:26:10 +01:00
2022-09-11 17:06:14 +02:00
unpack_source() {
mkdir $SRC/tarballs
for file in ${source[@]}; do
case ${file##*/} in
$name-$version.tar.xz)
echo "Unpacking $(get_filename $file)"
bsdtar -p -o -C $SRC -xf $(get_filename $file) ;;
*)
cp $(get_filename $file) $SRC ;;
esac
done
}
2006-02-23 16:26:10 +01:00
build() {
cd $name-$version
2008-10-23 18:36:34 +02:00
./configure --prefix=/usr
2008-10-23 18:36:34 +02:00
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
2014-07-02 09:05:47 +02:00
2013-04-08 13:58:27 +02:00
rm -r $PKG/usr/share/doc
2006-02-23 16:26:10 +01:00
}