30 lines
771 B
Bash
30 lines
771 B
Bash
# Template file for 'libvorbis'.
|
|
pkgname=libvorbis
|
|
version=1.3.6
|
|
revision=1
|
|
build_style=gnu-configure
|
|
hostmakedepends="pkg-config"
|
|
makedepends="libogg-devel"
|
|
short_desc="The Vorbis General Audio Compression Codec"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="BSD-3-Clause"
|
|
homepage="https://www.xiph.org/vorbis/"
|
|
distfiles="https://downloads.xiph.org/releases/vorbis/${pkgname}-${version}.tar.gz"
|
|
checksum=6ed40e0241089a42c48604dc00e362beee00036af2d8b3f46338031c9e0351cb
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
}
|
|
|
|
libvorbis-devel_package() {
|
|
depends="libogg-devel libvorbis>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/share
|
|
}
|
|
}
|