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