summaryrefslogtreecommitdiff
path: root/extra/liblrdf/PKGBUILD
blob: 4186550d40e1ada59b7eb8674f002e4a0e1c0315 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# $Id: PKGBUILD 161476 2012-06-11 19:18:53Z eric $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>

pkgname=liblrdf
pkgver=0.5.0
pkgrel=1
pkgdesc="A library for the manipulation of RDF file in LADSPA plugins"
arch=('i686' 'x86_64' 'mips64el')
url="https://github.com/swh/LRDF"
depends=('raptor' 'ladspa')
license=('GPL')
options=('!libtool')
groups=('ladspa-plugins')
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/swh/LRDF/tarball/${pkgver})
md5sums=('005ea24152620da7f2ee80a78e17f784')

build() {
  cd "${srcdir}"/swh-LRDF-*
  autoreconf -vfi
  ./configure --prefix=/usr
  make
}

package() {
  cd "${srcdir}"/swh-LRDF-*
  make DESTDIR="${pkgdir}" install
}