initial import
This commit is contained in:
35
raptor/PKGBUILD
Normal file
35
raptor/PKGBUILD
Normal file
@@ -0,0 +1,35 @@
|
||||
# Maintainer: Jesus E. <heckyel@riseup.net>
|
||||
|
||||
pkgname=raptor
|
||||
pkgver=2.0.15
|
||||
pkgrel=8
|
||||
pkgdesc="A C library that parses RDF/XML/N-Triples into RDF triples"
|
||||
arch=('i686' 'x86_64')
|
||||
url='http://librdf.org/raptor'
|
||||
depends=('curl' 'libxslt' 'icu')
|
||||
makedepends=('quilt')
|
||||
license=('LGPL-2.1')
|
||||
source=("http://librdf.org/dist/source/raptor2-$pkgver.tar.gz"{,.asc})
|
||||
sha512sums=('563dd01869eb4df8524ec12e2c0a541653874dcd834bd1eb265bc2943bb616968f624121d4688579cdce11b4f00a8ab53b7099f1a0850e256bb0a2c16ba048ee'
|
||||
'SKIP')
|
||||
validpgpkeys=('F879F0DEDA780198DD08DC6443EC92504F71955A') # Dave Beckett <dave@dajobe.org>
|
||||
|
||||
build() {
|
||||
cd raptor2-${pkgver}
|
||||
|
||||
./configure --prefix=/usr \
|
||||
--disable-static \
|
||||
--with-yajl=no \
|
||||
--with-icu-config=/usr/bin/icu-config
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd raptor2-${pkgver}
|
||||
make prefix="${pkgdir}"/usr install
|
||||
|
||||
# we don't support gtk-doc
|
||||
rm -rf $pkgdir/usr/share/gtk-doc
|
||||
|
||||
install -Dm644 COPYING.LIB -t ${pkgdir}/usr/share/licenses/${pkgname}
|
||||
}
|
||||
Reference in New Issue
Block a user