mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
26 lines
763 B
Bash
26 lines
763 B
Bash
# $Id: PKGBUILD 38936 2009-05-11 00:01:08Z jgc $
|
|
# Maintainer: damir <damir@archlinux.org>
|
|
|
|
pkgname=liblrdf
|
|
pkgver=0.4.0
|
|
pkgrel=6
|
|
pkgdesc="liblrdf allows categorizing LADSPA plugins"
|
|
arch=(i686 x86_64)
|
|
url="http://sourceforge.net/projects/lrdf"
|
|
depends=('raptor>=1.4.15-2' 'ladspa')
|
|
makedepends=('pkgconfig')
|
|
license=('GPL')
|
|
options=('!libtool')
|
|
source=(http://downloads.sourceforge.net/sourceforge/lrdf/liblrdf-${pkgver}.tar.gz
|
|
md5.patch)
|
|
groups=('ladspa-plugins')
|
|
md5sums=('327a5674f671c4b360c6353800226877'
|
|
'a6d231d052dc188cbc4c1039cf3a2003')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
patch -Np1 -i "${srcdir}/md5.patch" || return 1
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|