blob: b65f689b3f9e6762945ddd5c393c2fd776e6db1d (
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')
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
}
|