2010-02-15 Rasqal Version 0.9.19 Released The only change to this release is to fix the pkg-config rasqal.pc file to to restore the dependency on raptor which was accidently deleted. Lesson learnt: do not commit code after midnight local time. 2010-02-14 Rasqal Version 0.9.18 Released Add initial draft parsing and API (NOT execution) support for SPARQL 1.1 Update W3C Working Draft of 2010-01-26. Add public APIs (row, results, result formatter, variables table) so that query results can be built, read and written without a query. Add API resilience checks for invalid NULL pointer arguments. Many other bug fixes and improvements were made. Fixed Issues: #0000320, #0000323 #0000343, #0000345 and #0000347
23 lines
608 B
Makefile
23 lines
608 B
Makefile
# $NetBSD: Makefile,v 1.7 2010/02/16 14:34:40 wiz Exp $
|
|
|
|
DISTNAME= rasqal-0.9.19
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://download.librdf.org/source/
|
|
|
|
MAINTAINER= mkirby@NetBSD.org
|
|
HOMEPAGE= http://librdf.org/rasqal
|
|
COMMENT= Library that handles RDF query syntaxes
|
|
LICENSE= gnu-lgpl-v2.1 OR apache-2.0
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_TOOLS+= gmake pkg-config
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
|
|
PKGCONFIG_OVERRIDE+= rasqal.pc.in
|
|
|
|
.include "../../textproc/raptor/buildlink3.mk"
|
|
.include "../../devel/pcre/buildlink3.mk"
|
|
.include "../../textproc/libxml2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|