mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-04 16:21:38 +01:00
This release includes several bug fixes, including security fixes in
opusenc, as well as a few minor enhancements. Changes include:
* opusenc: Improved handling of malformed input files to avoid crashes
and other troublesome behavior
* opusenc: Percent progress is shown while encoding
* opusrtp: New --extract option to extract from input pcap file
* New project files for building with Microsoft Visual Studio
36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
# Contributor: Stuart Cardall <developer@it-offshore.co.uk>
|
|
# Maintainer: Stuart Cardall <developer@it-offshore.co.uk>
|
|
pkgname=opus-tools
|
|
pkgver=0.1.10
|
|
pkgrel=0
|
|
pkgdesc="Collection of tools for Opus audio codec"
|
|
url="http://wiki.xiph.org/Opus-tools"
|
|
arch="all"
|
|
license="BSD"
|
|
depends=""
|
|
makedepends="libogg-dev opus-dev flac-dev linux-headers"
|
|
subpackages="$pkgname-doc"
|
|
source="pkgname-$pkgver.tar.gz::http://downloads.xiph.org/releases/opus/$pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
--enable-assertions \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
|
|
md5sums="6b78535d58b94832710b14e219f65a91 pkgname-0.1.10.tar.gz"
|
|
sha256sums="a2357532d19471b70666e0e0ec17d514246d8b3cb2eb168f68bb0f6fd372b28c pkgname-0.1.10.tar.gz"
|
|
sha512sums="4ead97b9fe4658968a4b5cbe4bde5e2d8cbfaaea18dd0d817597cc6b6b11f26937b9eee7358ade63568f0213131aa80ecbed169d1b3885980a556871a4a7fe98 pkgname-0.1.10.tar.gz"
|