2010-10-19 21:41:29 +08:00
#
# 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>
# include global config
source ../_buildscripts/${ current_repo } -${ _arch } -cfg.conf
2010-03-14 23:48:48 +08:00
pkgname = rasqal
2011-03-06 22:51:27 +08:00
pkgver = 0.9.20
2010-03-14 23:48:48 +08:00
pkgrel = 1
pkgdesc = "a free C library that handles Resource Description Framework (RDF) query syntaxes, query construction and query execution returning result bindings"
url = "http://librdf.org/rasqal"
license = ( 'GPL' 'LGPL' )
arch = ( 'i686' 'x86_64' )
2011-03-06 22:51:27 +08:00
depends = ( 'raptor>=1.4.21' 'mpfr' )
2010-03-14 23:48:48 +08:00
options = ( '!libtool' )
source = ( http://download.librdf.org/source/${ pkgname } -${ pkgver } .tar.gz)
2011-03-06 22:51:27 +08:00
md5sums = ( 'c45b6cd784298e264e8757d14355ecce' )
2010-03-14 23:48:48 +08:00
build( ) {
cd ${ srcdir } /${ pkgname } -${ pkgver }
./configure --prefix= /usr --disable-static --enable-release \
--with-raptor= system
make || return 1
2010-10-19 21:41:29 +08:00
}
package( ) {
cd ${ srcdir } /${ pkgname } -${ pkgver }
2010-03-14 23:48:48 +08:00
make DESTDIR = ${ pkgdir } install || return 1
}