summaryrefslogtreecommitdiff
path: root/libvorbis-32/Pkgfile
blob: bb95717001ffd452393b3f8d1956eeab3277ba77 (plain)
    1 # Description: Vorbis codec library
    2 # URL:         https://xiph.org/vorbis/
    3 # Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
    4 # Depends on: libogg-32 libvorbis
    5 
    6 name=libvorbis-32
    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 	patch -p1 -i $SRC/CVE-2017-14160.patch
   16 
   17 	./configure \
   18 		--prefix=/usr \
   19 		--libdir=/usr/lib32
   20 
   21 	make
   22 	make DESTDIR=$PKG install
   23 
   24 	rm -r $PKG/usr/{include,share}
   25 }

Generated by cgit