core/liblrdf/PKGBUILD
2015-12-29 11:11:17 +00:00

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
}