25 lines
520 B
Plaintext
25 lines
520 B
Plaintext
# Description: Vorbis codec library
|
|
# URL: https://www.xiph.org/ogg/vorbis/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: libogg
|
|
|
|
name=libvorbis
|
|
version=1.3.6
|
|
release=1
|
|
source=(https://downloads.xiph.org/releases/vorbis/$name-$version.tar.xz
|
|
CVE-2017-14160.patch)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
# https://security-tracker.debian.org/tracker/source-package/libvorbis
|
|
patch -p1 -i $SRC/CVE-2017-14160.patch
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -rf $PKG/usr/share/doc
|
|
}
|