33 lines
859 B
Bash
33 lines
859 B
Bash
# Template file for 'opusfile'
|
|
pkgname=opusfile
|
|
version=0.10
|
|
revision=3
|
|
build_style=gnu-configure
|
|
hostmakedepends="automake libtool pkg-config"
|
|
makedepends="libogg-devel opus-devel libressl-devel"
|
|
short_desc="Library for opening, seeking, and decoding .opus files"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="http://www.opus-codec.org/"
|
|
license="BSD"
|
|
distfiles="http://downloads.xiph.org/releases/opus/${pkgname}-${version}.tar.gz"
|
|
checksum=48e03526ba87ef9cf5f1c47b5ebe3aa195bd89b912a57060c36184a6cd19412f
|
|
|
|
pre_configure() {
|
|
autoreconf -fi
|
|
}
|
|
post_install() {
|
|
rm -rf ${DESTDIR}/usr/share
|
|
vlicense COPYING
|
|
}
|
|
|
|
opusfile-devel_package() {
|
|
depends="${makedepends} ${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|