mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:07:14 +08:00
31 lines
897 B
Bash
31 lines
897 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=liblrdf
|
|
pkgver=0.4.0
|
|
pkgrel=7
|
|
pkgdesc="A library for the manipulation of RDF file in LADSPA plugins"
|
|
arch=('i686' 'x86_64')
|
|
url="http://sourceforge.net/projects/lrdf"
|
|
depends=('raptor1' 'ladspa')
|
|
makedepends=('pkgconfig')
|
|
license=('GPL')
|
|
options=('!libtool')
|
|
source=(http://downloads.sourceforge.net/sourceforge/lrdf/${pkgname}-${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
|
|
}
|