mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
24 lines
583 B
Bash
24 lines
583 B
Bash
# Arch contribution https://www.archlinux.org/packages/community/x86_64/bcg729/
|
|
|
|
pkgname=bcg729
|
|
pkgver=1.0.1
|
|
pkgrel=1
|
|
pkgdesc="g729 codec"
|
|
arch=('x86_64')
|
|
url="http://www.linphone.org/eng/documentation/dev/bcg729.html"
|
|
license=('GPL')
|
|
depends=('mediastreamer')
|
|
source=("https://github.com/BelledonneCommunications/bcg729/archive/${pkgver}.tar.gz")
|
|
sha256sums=('20f04d1d45c62cb6c06df2177db0701f376940a55744386da3651104251fd5fc')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./autogen.sh
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir/" install
|
|
} |