mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-09 19:27:25 +08:00
32 lines
747 B
Bash
32 lines
747 B
Bash
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
# Contributors from Arch: Ray Rashif <schivmeister@gmail.com>
|
|
# Orivej Desh <smpuj@bk.ru>
|
|
|
|
pkgname=vamp-plugin-sdk
|
|
pkgver=2.6
|
|
_dir=1520
|
|
pkgrel=1
|
|
pkgdesc="The Vamp audio analysis plugin system"
|
|
arch=(x86_64)
|
|
url="http://www.vamp-plugins.org/"
|
|
license=('BSD')
|
|
depends=('gcc-libs' 'libsndfile')
|
|
source=("http://code.soundsoftware.ac.uk/attachments/download/$_dir/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('200d6f5980d8d8877d296975a7e2890b')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
|
}
|
|
|
|
|