mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 14:54:37 +08:00
26 lines
666 B
Bash
26 lines
666 B
Bash
# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/opencore-amr
|
|
|
|
pkgname=opencore-amr
|
|
pkgver=0.1.3
|
|
pkgrel=2
|
|
pkgdesc="Open source implementation of the Adaptive Multi Rate (AMR) speech codec"
|
|
arch=('x86_64')
|
|
license=('APACHE')
|
|
url="http://opencore-amr.sourceforge.net/"
|
|
depends=('glibc')
|
|
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('09d2c5dfb43a9f6e9fec8b1ae678e725')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
./configure --prefix=/usr --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make DESTDIR=${pkgdir}/ install
|
|
}
|
|
|