compat-32/libvorbis-32/Pkgfile

23 lines
458 B
Plaintext
Raw Normal View History

# Description: Vorbis codec library
# URL: https://xiph.org/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
2020-07-11 09:42:05 +02:00
version=1.3.7
release=1
2020-07-11 09:42:05 +02:00
source=(https://downloads.xiph.org/releases/vorbis/${name%-*}-$version.tar.xz)
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
./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}
}