mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 16:47:15 +08:00
30 lines
680 B
Bash
30 lines
680 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=speex
|
|
pkgver=1.2rc1
|
|
pkgrel=9
|
|
pkgdesc="A free codec for free speech"
|
|
arch=('x86_64')
|
|
license=('BSD')
|
|
depends=('libogg')
|
|
options=('!libtool')
|
|
source=("http://downloads.us.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('c4438b22c08e5811ff10e2b06ee9b9ae')
|
|
url="http://www.speex.org/"
|
|
|
|
build() {
|
|
cd $srcdir/speex-$pkgver
|
|
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/speex-$pkgver
|
|
make DESTDIR=$startdir/pkg install
|
|
|
|
install -D -m644 COPYING $startdir/pkg/usr/share/licenses/$pkgname/LICENSE
|
|
}
|