mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:07:14 +08:00
32 lines
715 B
Bash
32 lines
715 B
Bash
pkgname=lv2
|
|
pkgver=1.10.0
|
|
pkgrel=1
|
|
pkgdesc="Successor to the LADSPA audio plug-in standard"
|
|
url="http://lv2plug.in/"
|
|
license=('LGPL' 'custom')
|
|
arch=('x86_64')
|
|
makedepends=('python2' 'libsndfile')
|
|
optdepends=('libsndfile: Example sampler'
|
|
'python2: Scripts')
|
|
provides=('lv2core')
|
|
conflicts=('lv2core')
|
|
replaces=('lv2core')
|
|
source=("http://lv2plug.in/spec/$pkgname-$pkgver.tar.bz2")
|
|
md5sums=('dbf6ac9a1003b754155501984eebd57e')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
python2 waf configure --prefix=/usr
|
|
python2 waf build $MAKEFLAGS
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
python2 waf install --destdir="$pkgdir"
|
|
|
|
install -Dm644 COPYING \
|
|
"$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
|
}
|