mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:07:14 +08:00
27 lines
575 B
Bash
27 lines
575 B
Bash
pkgname=liblrdf
|
|
pkgver=0.5.0
|
|
pkgrel=7
|
|
pkgdesc="A library for the manipulation of RDF file in LADSPA plugins"
|
|
arch=('x86_64')
|
|
url="https://github.com/swh/LRDF"
|
|
depends=('raptor' 'ladspa')
|
|
makedepends=('pkgconfig')
|
|
license=('GPL')
|
|
source=("https://github.com/swh/LRDF/tarball/${pkgver}")
|
|
groups=('ladspa-plugins')
|
|
md5sums=('005ea24152620da7f2ee80a78e17f784')
|
|
|
|
build() {
|
|
cd "${srcdir}/swh-LRDF-7ebc032"
|
|
|
|
autoreconf -vfi
|
|
./configure --prefix=/usr \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/swh-LRDF-7ebc032"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|