forked from ports/compat-32
23 lines
458 B
Plaintext
23 lines
458 B
Plaintext
# Description: Vorbis codec library
|
|
# URL: https://xiph.org/vorbis/
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: libogg-32 libvorbis
|
|
|
|
name=libvorbis-32
|
|
version=1.3.7
|
|
release=1
|
|
source=(https://downloads.xiph.org/releases/vorbis/${name%-*}-$version.tar.xz)
|
|
|
|
build() {
|
|
cd ${name%-*}-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/{include,share}
|
|
}
|