blob: 04d7d6f7b0fa3d8461c9f6cc64db28a8a2880410 (
plain)
1 # Description: Vorbis codec library
2 # URL: https://www.xiph.org/ogg/vorbis/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: libogg
5
6 name=libvorbis
7 version=1.3.6
8 release=1
9 source=(https://downloads.xiph.org/releases/vorbis/$name-$version.tar.xz
10 CVE-2017-14160.patch)
11
12 build() {
13 cd $name-$version
14
15 # https://security-tracker.debian.org/tracker/source-package/libvorbis
16 patch -p1 -i $SRC/CVE-2017-14160.patch
17
18 ./configure --prefix=/usr
19
20 make
21 make DESTDIR=$PKG install
22
23 rm -rf $PKG/usr/share/doc
24 }
|