core/liblrdf/PKGBUILD
2012-08-29 13:41:07 +00:00

33 lines
709 B
Bash

#
# Platform Packages for Chakra, part of chakra-project.org
#
# maintainer abveritas@chakra-project.org
pkgname=liblrdf
pkgver=0.5.0
pkgrel=3
pkgdesc="A library for the manipulation of RDF file in LADSPA plugins"
arch=('i686' '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
}