mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 23:47:13 +08:00
34 lines
831 B
Bash
34 lines
831 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=celt
|
|
pkgver=0.7.1
|
|
pkgrel=1
|
|
pkgdesc="Low-latency audio communication codec"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.celt-codec.org"
|
|
license=('BSD')
|
|
depends=('libogg')
|
|
provides=('celt-0.7')
|
|
replaces=('celt-0.7')
|
|
options=('!libtool')
|
|
source=(http://downloads.xiph.org/releases/celt/celt-$pkgver.tar.gz)
|
|
md5sums=('c7f6b8346e132b1a48dae0eff77ea9f0')
|
|
|
|
build() {
|
|
cd "$srcdir/celt-$pkgver"
|
|
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/BSD"
|
|
}
|
|
|