mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 12:47:16 +08:00
32 lines
731 B
Bash
32 lines
731 B
Bash
pkgname=lv2
|
|
pkgver=1.4.0
|
|
pkgrel=1
|
|
pkgdesc="Successor to the LADSPA audio plug-in standard"
|
|
url="http://lv2plug.in/"
|
|
license=('LGPL' 'custom')
|
|
arch=('i686' 'x86_64')
|
|
makedepends=('python2' 'libsndfile' 'gtk2')
|
|
optdepends=('libsndfile: lv2-eg-sampler'
|
|
'gtk2: lv2-eg-sampler')
|
|
provides=('lv2core')
|
|
conflicts=('lv2core')
|
|
replaces=('lv2core')
|
|
source=("http://lv2plug.in/spec/$pkgname-$pkgver.tar.bz2")
|
|
md5sums=('b7fb567fbfadae14ecd4f422fa24d41e')
|
|
|
|
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"
|
|
}
|