core/liblrdf/PKGBUILD
2013-11-11 10:35:11 +00:00

30 lines
640 B
Bash

# Maintainer: abveritas@chakra-project.org
pkgname=liblrdf
pkgver=0.5.0
pkgrel=6
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')
options=('!libtool')
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
}