mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 17:57:13 +08:00
31 lines
757 B
Bash
31 lines
757 B
Bash
# Maintainer: Ray Rashif <schivmeister@gmail.com>
|
|
# Contributor: Orivej Desh <smpuj@bk.ru>
|
|
|
|
pkgname=vamp-plugin-sdk
|
|
pkgver=2.1
|
|
pkgrel=1
|
|
pkgdesc="The Vamp audio analysis plugin system"
|
|
arch=(i686 x86_64)
|
|
url="http://www.vamp-plugins.org/"
|
|
license=('BSD')
|
|
depends=('gcc-libs' 'libsndfile')
|
|
options=('!libtool')
|
|
source=(http://downloads.sourceforge.net/vamp/$pkgname-$pkgver.tar.gz
|
|
gcc44.patch)
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
# gcc 4.4 compatibility
|
|
patch -Np1 -i ../gcc44.patch || return 1
|
|
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR="$pkgdir/" install
|
|
|
|
install -Dm644 COPYING \
|
|
"$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
|
}
|
|
md5sums=('13252077a73987dae72a9174e529b6b9'
|
|
'a07e3ef9c657a56cf2e8c4afc0ba1cec')
|