compat-32/libvorbis-32/Pkgfile

26 lines
528 B
Plaintext
Raw Normal View History

# Description: Vorbis codec library
# URL: http://www.xiph.org/ogg/vorbis/
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
2019-08-27 13:48:19 +02:00
# Depends on: libogg-32 libvorbis
name=libvorbis-32
2018-03-18 10:02:39 +01:00
version=1.3.6
release=1
2018-03-18 10:02:39 +01:00
source=(https://downloads.xiph.org/releases/vorbis/${name%-*}-$version.tar.xz
CVE-2017-14160.patch)
build() {
2018-03-18 10:02:39 +01:00
cd ${name%-*}-$version
2014-01-25 01:46:50 +01:00
2018-03-18 10:02:39 +01:00
patch -p1 -i $SRC/CVE-2017-14160.patch
2014-01-25 01:46:50 +01:00
2018-03-18 10:02:39 +01:00
./configure \
--prefix=/usr \
--libdir=/usr/lib32
2014-01-25 01:46:50 +01:00
2018-03-18 10:02:39 +01:00
make
make DESTDIR=$PKG install
rm -r $PKG/usr/{include,share}
}