2006-02-23 15:26:10 +00:00
|
|
|
# Description: Vorbis codec library
|
2020-06-21 20:21:42 +10:00
|
|
|
# URL: https://www.xiph.org/vorbis/
|
2023-08-27 17:33:37 +02:00
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2012-06-21 08:58:35 +02:00
|
|
|
# Depends on: libogg
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=libvorbis
|
2020-07-11 16:34:55 +10:00
|
|
|
version=1.3.7
|
2018-03-17 15:32:06 +11:00
|
|
|
release=1
|
2020-07-11 16:34:55 +10:00
|
|
|
source=(https://downloads.xiph.org/releases/vorbis/$name-$version.tar.xz)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build() {
|
2023-08-27 17:33:37 +02:00
|
|
|
cd $name-$version
|
2014-01-23 11:27:18 +01:00
|
|
|
|
2023-08-27 17:33:37 +02:00
|
|
|
./configure --prefix=/usr
|
2014-01-23 11:27:18 +01:00
|
|
|
|
2023-08-27 17:33:37 +02:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2018-03-07 01:15:29 +11:00
|
|
|
|
2023-08-27 17:33:37 +02:00
|
|
|
rm -rf $PKG/usr/share/doc
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|