opt/libsndfile/Pkgfile
Predrag Ivanovic 9a5849cf67 libsndfile: Update to 1.0.28, fix CVE-2017-12562
Fix heap buffer overflows when writing strings in binheader

Add to-be-upstreamed patches from openSUSE:
0001-FLAC-Fix-a-buffer-read-overrun.patch
0002-src-flac.c-Fix-a-buffer-read-overflow.patch
0010-src-aiff.c-Fix-a-buffer-read-overflow.patch

Ref:
RH bug: https://bugzilla.redhat.com/show_bug.cgi?id=1483140
Upstream Github issue: https://github.com/erikd/libsndfile/issues/292
Upstream CVE-2017-12562 patch commit: cf7a8182c2
2017-10-12 23:31:35 +11:00

32 lines
1012 B
Plaintext

# Description: Library for manipulating sound files.
# URL: http://www.mega-nerd.com/libsndfile
# Maintainer: Danny Rawlins, crux at romster dot me
# Packager: Jay Dolan, jdolan at jdolan dot dyndns dot org
# Depends on: flac alsa-lib libvorbis
name=libsndfile
version=1.0.28
release=1
source=(http://www.mega-nerd.com/$name/files/$name-$version.tar.gz
0001-FLAC-Fix-a-buffer-read-overrun.patch
0002-src-flac.c-Fix-a-buffer-read-overflow.patch
0010-src-aiff.c-Fix-a-buffer-read-overflow.patch
0020-src-common.c-Fix-heap-buffer-overflows-when-writing-.patch)
build() {
cd $name-$version
patch -p1 -i $SRC/0001-FLAC-Fix-a-buffer-read-overrun.patch
patch -p1 -i $SRC/0002-src-flac.c-Fix-a-buffer-read-overflow.patch
patch -p1 -i $SRC/0010-src-aiff.c-Fix-a-buffer-read-overflow.patch
patch -p1 -i $SRC/0020-src-common.c-Fix-heap-buffer-overflows-when-writing-.patch
./configure --prefix=/usr \
--disable-static \
--with-pic
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/doc
}