wok rev 22149

updated xapian and xapian-dev (1.2.19 -> 1.4.13)
author Hans-G?nter Theisgen
date Wed Nov 06 17:20:28 2019 +0100 (2019-11-06)
parents ab73a80ed2b7
children 39c37a760ab8
files xapian-dev/receipt xapian/description.txt xapian/receipt
line diff
     1.1 --- a/xapian-dev/receipt	Wed Nov 06 16:43:31 2019 +0100
     1.2 +++ b/xapian-dev/receipt	Wed Nov 06 17:20:28 2019 +0100
     1.3 @@ -1,22 +1,24 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="xapian-dev"
     1.7 -VERSION="1.2.19"
     1.8 +VERSION="1.4.13"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="An Open Source Search Engine Library."
    1.11 +SHORT_DESC="An Open Source Search Engine Library - development files."
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14  WEB_SITE="https://xapian.org/"
    1.15 -WANTED="xapian"
    1.16  
    1.17  DEPENDS="xapian"
    1.18 +WANTED="xapian"
    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 $fs/usr/share
    1.24 -	cp -a $install/usr/include $fs/usr
    1.25 -	cp -a $install/usr/lib/*a $fs/usr/lib
    1.26 -	cp -a $install/usr/lib/cmake $fs/usr/lib
    1.27 -	cp -a $install/usr/share/aclocal $fs/usr/share
    1.28 +	mkdir -p $fs/usr/lib
    1.29 +	mkdir -p $fs/usr/share
    1.30 +
    1.31 +	cp -a $install/usr/include		$fs/usr
    1.32 +	cp -a $install/usr/lib/*a		$fs/usr/lib
    1.33 +	cp -a $install/usr/lib/cmake		$fs/usr/lib
    1.34 +	cp -a $install/usr/share/aclocal	$fs/usr/share
    1.35  }
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/xapian/description.txt	Wed Nov 06 17:20:28 2019 +0100
     2.3 @@ -0,0 +1,8 @@
     2.4 +Xapian is an Open Source Search Engine Library, released under the GPL v2+.
     2.5 +It's written in C++, with bindings to allow use from Perl, Python 2, Python 3,
     2.6 +PHP 5, PHP 7, Java, Tcl, C#, Ruby, Lua, Erlang, Node.js and R (so far!)
     2.7 +
     2.8 +Xapian is a highly adaptable toolkit which allows developers to easily add
     2.9 +advanced indexing and search facilities to their own applications.
    2.10 +It has built-in support for several families of weighting models and also
    2.11 +supports a rich set of boolean query operators.
     3.1 --- a/xapian/receipt	Wed Nov 06 16:43:31 2019 +0100
     3.2 +++ b/xapian/receipt	Wed Nov 06 17:20:28 2019 +0100
     3.3 @@ -1,29 +1,36 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="xapian"
     3.7 -VERSION="1.2.19"
     3.8 +VERSION="1.4.13"
     3.9  CATEGORY="office"
    3.10  SHORT_DESC="An Open Source Search Engine Library."
    3.11  MAINTAINER="pascal.bellard@slitaz.org"
    3.12  LICENSE="GPL2"
    3.13 +WEB_SITE="https://xapian.org/"
    3.14 +
    3.15  TARBALL="$PACKAGE-core-$VERSION.tar.xz"
    3.16 -WEB_SITE="https://xapian.org/"
    3.17 -WGET_URL="http://oligarchy.co.uk/$PACKAGE/$VERSION/$TARBALL"
    3.18 +WGET_URL="https://oligarchy.co.uk/$PACKAGE/$VERSION/$TARBALL"
    3.19  
    3.20 -DEPENDS="util-linux-uuid zlib gcc-lib-base"
    3.21 -BUILD_DEPENDS="util-linux-uuid-dev zlib-dev"
    3.22 +DEPENDS="gcc83-lib-base util-linux-uuid zlib"
    3.23 +BUILD_DEPENDS="gcc83 util-linux-uuid-dev zlib-dev"
    3.24  
    3.25  # Rules to configure and make the package.
    3.26  compile_rules()
    3.27  {
    3.28 -	./configure --prefix=/usr $CONFIGURE_ARGS &&
    3.29 -	make && make DESTDIR=$DESTDIR install
    3.30 +	./configure		\
    3.31 +		CC=gcc-83	\
    3.32 +		CXX=g++-83	\
    3.33 +		--prefix=/usr	\
    3.34 +		$CONFIGURE_ARGS &&
    3.35 +	make &&
    3.36 +	make DESTDIR=$DESTDIR install
    3.37  }
    3.38  
    3.39  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.40  genpkg_rules()
    3.41  {
    3.42  	mkdir -p $fs/usr/lib
    3.43 -	cp -a $install/usr/bin $fs/usr
    3.44 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    3.45 +
    3.46 +	cp -a $install/usr/bin		$fs/usr
    3.47 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    3.48  }