mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 22:37:13 +08:00
30 lines
797 B
Bash
30 lines
797 B
Bash
|
#
|
||
|
# Chakra Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
||
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
||
|
|
||
|
# include global config
|
||
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
||
|
|
||
|
pkgname=slv2
|
||
|
pkgver=0.6.6
|
||
|
pkgrel=1
|
||
|
pkgdesc="Library for LV2 hosts"
|
||
|
arch=(i686 x86_64)
|
||
|
url="http://drobilla.net/software/slv2"
|
||
|
license=('GPL')
|
||
|
depends=('redland' 'lv2core' 'jack-audio-connection-kit')
|
||
|
makedepends=('python')
|
||
|
install=$pkgname.install
|
||
|
source=(http://download.drobilla.net/$pkgname-$pkgver.tar.bz2)
|
||
|
|
||
|
build() {
|
||
|
cd "$srcdir/$pkgname-$pkgver"
|
||
|
|
||
|
./waf configure --prefix=/usr
|
||
|
./waf build $MAKEFLAGS || return 1
|
||
|
./waf install --destdir="$pkgdir"
|
||
|
}
|
||
|
md5sums=('b8e8e0e82dd04324fcd533e8acd1ce85')
|