mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 22:37:15 +08:00
25 lines
693 B
Bash
25 lines
693 B
Bash
|
# $Id: PKGBUILD 62600 2010-01-10 14:06:30Z ibiru $
|
||
|
# Maintainer: Ionut Biru <ionut@archlinux.ro>
|
||
|
# Contributor: WAntilles <wantilles@adslgr.com>
|
||
|
|
||
|
pkgname=opencore-amr
|
||
|
pkgver=0.1.2
|
||
|
pkgrel=1
|
||
|
pkgdesc="Open source implementation of the Adaptive Multi Rate (AMR) speech codec"
|
||
|
arch=('i686' 'x86_64')
|
||
|
license=('APACHE')
|
||
|
url="http://opencore-amr.sourceforge.net/"
|
||
|
depends=('gcc-libs')
|
||
|
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
||
|
options=('!libtool')
|
||
|
md5sums=('8e8b8b253eb046340ff7b6bf7a6ccd3e')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/${pkgname}-${pkgver}
|
||
|
|
||
|
./configure --prefix=/usr || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR=${pkgdir}/ install || return 1
|
||
|
}
|
||
|
|