24 lines
644 B
Plaintext
24 lines
644 B
Plaintext
# Description: Tools used to create/alter ogg/vorbis files
|
|
# URL: https://www.xiph.org/vorbis/
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
|
# Depends on: curl libvorbis
|
|
# Optional: flac libao opus opusfile speex
|
|
|
|
name=vorbis-tools
|
|
version=1.4.2
|
|
release=2
|
|
source=(https://downloads.xiph.org/releases/vorbis/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
PKGMK_VORBISTOOLS=(--prefix=/usr --disable-nls
|
|
--disable-maintainer-mode
|
|
--enable-vcut)
|
|
prt-get isinst libao || PKGMK_VORBISTOOLS+=(--disable-ogg123)
|
|
|
|
cd $name-$version
|
|
./configure "${PKGMK_VORBISTOOLS[@]}"
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|