2012-11-21 11:12:43 -06:00
|
|
|
# Description: Vorbis codec library
|
2020-06-17 19:38:34 -05:00
|
|
|
# URL: https://xiph.org/vorbis/
|
2013-02-02 01:54:23 +11:00
|
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
2019-08-27 21:48:19 +10:00
|
|
|
# Depends on: libogg-32 libvorbis
|
2012-11-21 11:12:43 -06:00
|
|
|
|
|
|
|
name=libvorbis-32
|
2020-07-11 17:42:05 +10:00
|
|
|
version=1.3.7
|
2012-11-21 11:12:43 -06:00
|
|
|
release=1
|
2020-07-11 17:42:05 +10:00
|
|
|
source=(https://downloads.xiph.org/releases/vorbis/${name%-*}-$version.tar.xz)
|
2012-11-21 11:12:43 -06:00
|
|
|
|
|
|
|
build() {
|
2018-03-18 20:02:39 +11:00
|
|
|
cd ${name%-*}-$version
|
2014-01-25 11:46:50 +11:00
|
|
|
|
2018-03-18 20:02:39 +11:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--libdir=/usr/lib32
|
2014-01-25 11:46:50 +11:00
|
|
|
|
2018-03-18 20:02:39 +11:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
|
|
|
rm -r $PKG/usr/{include,share}
|
2012-11-21 11:12:43 -06:00
|
|
|
}
|