opt/flac/Pkgfile

26 lines
504 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
2019-10-13 12:14:46 +02:00
version=1.3.3
release=2
source=(https://downloads.xiph.org/releases/flac/$name-$version.tar.xz
2e7931c.patch
ced7f68.patch)
2006-02-23 16:26:10 +01:00
build() {
cd $name-$version
2008-10-23 18:36:34 +02:00
patch -p1 -i $SRC/2e7931c.patch # CVE-2020-0499
patch -p1 -i $SRC/ced7f68.patch # overflow checks
./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
}