wok rev 25315
updated soprano and soprano-dev (2.8.0 -> 2.9.4)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Jul 21 06:45:43 2022 +0100 (2022-07-21) |
parents | adaf06c5172f |
children | 0440e43a53b7 |
files | soprano-dev/receipt soprano/description.txt soprano/receipt |
line diff
1.1 --- a/soprano-dev/receipt Wed Jul 20 17:47:52 2022 +0100 1.2 +++ b/soprano-dev/receipt Thu Jul 21 06:45:43 2022 +0100 1.3 @@ -1,20 +1,19 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="soprano-dev" 1.7 -VERSION="2.8.0" 1.8 +VERSION="2.9.4" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="Soprano pkgconfig and include files." 1.11 +SHORT_DESC="Soprano - development files." 1.12 MAINTAINER="pankso@slitaz.org" 1.13 LICENSE="GPL2" 1.14 -WANTED="soprano" 1.15 WEB_SITE="http://soprano.sourceforge.net/" 1.16 1.17 DEPENDS="pkg-config" 1.18 +WANTED="soprano" 1.19 1.20 # Rules to gen a SliTaz package suitable for Tazpkg. 1.21 genpkg_rules() 1.22 { 1.23 - mkdir -p $fs/usr/lib 1.24 - cp -a $install/usr/include $fs/usr 1.25 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.26 + cook_copy_folders include 1.27 + cook_copy_folders pkgconfig 1.28 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/soprano/description.txt Thu Jul 21 06:45:43 2022 +0100 2.3 @@ -0,0 +1,8 @@ 2.4 +Soprano (formerly known as QRDF) is a library which 2.5 +provides a highly usable object-oriented C++/Qt4 2.6 +framework for RDF data. 2.7 +It uses different RDF storage solutions as backends 2.8 +through a simple plugin system. 2.9 +Soprano is targetted at desktop applications that 2.10 +need a RDF data storage solution. 2.11 +It has been optimized for easy usage and simplicity.
3.1 --- a/soprano/receipt Wed Jul 20 17:47:52 2022 +0100 3.2 +++ b/soprano/receipt Thu Jul 21 06:45:43 2022 +0100 3.3 @@ -1,17 +1,18 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="soprano" 3.7 -VERSION="2.8.0" 3.8 +VERSION="2.9.4" 3.9 CATEGORY="system-tools" 3.10 -SHORT_DESC="Soprano is the Qt/C++ RDF framework" 3.11 +SHORT_DESC="Soprano is the Qt/C++ RDF framework." 3.12 MAINTAINER="pankso@slitaz.org" 3.13 LICENSE="GPL2" 3.14 +WEB_SITE="http://soprano.sourceforge.net/" 3.15 + 3.16 TARBALL="$PACKAGE-$VERSION.tar.bz2" 3.17 -WEB_SITE="http://soprano.sourceforge.net/" 3.18 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 3.19 3.20 -DEPENDS="libQtCore libQtNetwork raptor libiodbc" 3.21 -BUILD_DEPENDS="cmake qmake Qt4-dev raptor-dev libiodbc-dev" 3.22 +DEPENDS="libiodbc libQtCore libQtDBus libQtNetwork libQtXml raptor" 3.23 +BUILD_DEPENDS="cmake doxygen libiodbc-dev qmake Qt4-dev raptor-dev" 3.24 3.25 # What is the latest version available today? 3.26 current_version() 3.27 @@ -24,19 +25,23 @@ 3.28 # Rules to configure and make the package. 3.29 compile_rules() 3.30 { 3.31 - mkdir -p build && cd build 3.32 - cmake \ 3.33 - -DCMAKE_INSTALL_PREFIX=/usr \ 3.34 - .. && 3.35 - make && make install 3.36 + mkdir _build && 3.37 + cd _build && 3.38 + cmake .. \ 3.39 + -D CMAKE_INSTALL_PREFIX=/usr \ 3.40 + -D SOPRANO_DISABLE_CLUCENE_INDEX=TRUE \ 3.41 + -D SOPRANO_DISABLE_REDLAND_BACKEND=TRUE && 3.42 + make && 3.43 + make install 3.44 } 3.45 3.46 # Rules to gen a SliTaz package suitable for Tazpkg. 3.47 genpkg_rules() 3.48 { 3.49 mkdir -p $fs/usr/lib 3.50 - cp -a $install/usr/bin $fs/usr 3.51 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.52 - cp -a $install/usr/lib/soprano $fs/usr/lib 3.53 - cp -a $install/usr/share $fs/usr 3.54 + 3.55 + cp -a $install/usr/bin $fs/usr 3.56 + cp -a $install/usr/lib/*.so* $fs/usr/lib 3.57 + cp -a $install/usr/lib/soprano $fs/usr/lib 3.58 + cp -a $install/usr/share $fs/usr 3.59 }