core/liblrdf/PKGBUILD

33 lines
709 B
Bash
Raw Normal View History

2011-07-08 06:22:40 +08:00
#
# Platform Packages for Chakra, part of chakra-project.org
#
# maintainer abveritas@chakra-project.org
2010-03-14 23:48:48 +08:00
pkgname=liblrdf
pkgver=0.5.0
2012-08-29 21:41:07 +08:00
pkgrel=3
2010-03-14 23:48:48 +08:00
pkgdesc="A library for the manipulation of RDF file in LADSPA plugins"
arch=('i686' 'x86_64')
2012-08-29 15:31:09 +08:00
url="https://github.com/swh/LRDF"
2011-08-20 18:50:36 +08:00
depends=('raptor' 'ladspa')
2010-03-14 23:48:48 +08:00
makedepends=('pkgconfig')
license=('GPL')
options=('!libtool')
source=("https://github.com/swh/LRDF/tarball/${pkgver}")
2010-03-14 23:48:48 +08:00
groups=('ladspa-plugins')
md5sums=('005ea24152620da7f2ee80a78e17f784')
2010-03-14 23:48:48 +08:00
build() {
cd "${srcdir}/swh-LRDF-7ebc032"
2011-08-20 18:50:36 +08:00
autoreconf -vfi
2012-08-29 15:31:09 +08:00
./configure --prefix=/usr \
--disable-static
2011-08-20 18:50:36 +08:00
make
}
2010-03-14 23:48:48 +08:00
2011-08-20 18:50:36 +08:00
package() {
cd "${srcdir}/swh-LRDF-7ebc032"
2011-08-20 18:50:36 +08:00
make DESTDIR="${pkgdir}" install
2010-03-14 23:48:48 +08:00
}