mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 12:37:14 +08:00
32 lines
756 B
Bash
32 lines
756 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.4
|
|
pkgrel=1
|
|
pkgdesc="The Vamp audio analysis plugin system"
|
|
arch=(x86_64)
|
|
url="http://www.vamp-plugins.org/"
|
|
license=('BSD')
|
|
depends=('gcc-libs' 'libsndfile')
|
|
options=('!libtool')
|
|
source=("http://code.soundsoftware.ac.uk/attachments/download/517/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('4bd75ca4515c141cd8776bdb59066261')
|
|
|
|
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"
|
|
}
|
|
|
|
|