mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 17:47:38 +08:00
30 lines
812 B
Bash
30 lines
812 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=lv2core
|
||
|
pkgver=3.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="LV2: Successor to the LADSPA audio plug-in standard"
|
||
|
url="http://lv2plug.in/"
|
||
|
license=('LGPL' 'custom')
|
||
|
arch=(i686 x86_64)
|
||
|
makedepends=('python')
|
||
|
source=(http://lv2plug.in/spec/$pkgname-$pkgver.tar.bz2)
|
||
|
|
||
|
build() {
|
||
|
cd "$srcdir/$pkgname-$pkgver"
|
||
|
|
||
|
./waf configure --prefix=/usr
|
||
|
./waf build $MAKEFLAGS || return 1
|
||
|
./waf install --destdir="$pkgdir"
|
||
|
|
||
|
install -Dm0644 COPYING \
|
||
|
"$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
||
|
}
|
||
|
md5sums=('382f7d96ff0374c0c495336e1c8bb999')
|