opt/flac/Pkgfile
2021-09-18 17:08:34 +10:00

26 lines
504 B
Plaintext

# Description: Free Lossless Audio Codec.
# URL: https://xiph.org/flac/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: libogg
name=flac
version=1.3.3
release=2
source=(https://downloads.xiph.org/releases/flac/$name-$version.tar.xz
2e7931c.patch
ced7f68.patch)
build() {
cd $name-$version
patch -p1 -i $SRC/2e7931c.patch # CVE-2020-0499
patch -p1 -i $SRC/ced7f68.patch # overflow checks
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/doc
}