core/opus/PKGBUILD

27 lines
833 B
Bash
Raw Normal View History

2013-11-17 08:44:51 +08:00
# Maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/opus
2012-10-19 13:07:47 +08:00
pkgname=opus
2013-12-07 18:23:58 +08:00
pkgver=1.1
pkgrel=2
2012-10-19 13:07:47 +08:00
pkgdesc="codec designed for interactive speech and audio transmission over the Internet"
arch=('x86_64')
url="http://www.opus-codec.org/"
license=('custom')
depends=('glibc')
source=("http://downloads.xiph.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz")
2013-12-07 18:23:58 +08:00
md5sums=('c5a8cf7c0b066759542bc4ca46817ac6')
2012-10-19 13:07:47 +08:00
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr --enable-custom-modes --disable-static
2012-10-19 13:07:47 +08:00
make
}
package() {
cd ${srcdir}/${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
install -m755 -d "${pkgdir}/usr/share/licenses/opus"
install -m644 COPYING "${pkgdir}/usr/share/licenses/opus/"
2013-11-17 08:44:51 +08:00
}