wok diff libzdb/receipt @ rev 23645

openal: added dependency libatomic
author Hans-G?nter Theisgen
date Mon Apr 20 13:45:45 2020 +0100 (2020-04-20)
parents f87f9df200aa
children ede1d184d5c5
line diff
     1.1 --- a/libzdb/receipt	Thu Apr 24 16:06:34 2014 +0200
     1.2 +++ b/libzdb/receipt	Mon Apr 20 13:45:45 2020 +0100
     1.3 @@ -1,19 +1,21 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libzdb"
     1.7 -VERSION="3.0"
     1.8 +VERSION="3.2.1"
     1.9  CATEGORY="system-tools"
    1.10  SHORT_DESC="Zild Database Library."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12  LICENSE="GPL"
    1.13 +WEB_SITE="http://www.tildeslash.com/libzdb/"
    1.14 +
    1.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.16 -WEB_SITE="http://www.tildeslash.com/libzdb/"
    1.17  WGET_URL="http://www.tildeslash.com/libzdb/dist/$TARBALL"
    1.18 +
    1.19 +DEPENDS="gcc83-lib-base sqlite"
    1.20 +BUILD_DEPENDS="gcc83 sqlite-dev"
    1.21 +
    1.22  #HOST_ARCH="i486 arm"
    1.23  
    1.24 -DEPENDS="sqlite"
    1.25 -BUILD_DEPENDS="sqlite-dev"
    1.26 -
    1.27  # Handle cross comilation
    1.28  case "$ARCH" in
    1.29  	arm) ;;
    1.30 @@ -22,19 +24,22 @@
    1.31  # Rules to configure and make the package.
    1.32  compile_rules()
    1.33  {
    1.34 -	./configure \
    1.35 -		--prefix=/usr \
    1.36 -		--without-postgresql \
    1.37 -		--without-mysql \
    1.38 -		--enable-optimized \
    1.39 +	./configure			\
    1.40 +		CC=gcc-83		\
    1.41 +		CXX=g++-83		\
    1.42 +		--prefix=/usr		\
    1.43 +		--without-postgresql	\
    1.44 +		--without-mysql		\
    1.45 +		--enable-optimized	\
    1.46  		$CONFIGURE_ARGS &&
    1.47 -	make && make install
    1.48 +	make &&
    1.49 +	make install
    1.50  }
    1.51  
    1.52  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.53  genpkg_rules()
    1.54  {
    1.55  	mkdir -p $fs/usr/lib
    1.56 -	cp -a ${install}/usr/lib/*.so* ${fs}/usr/lib
    1.57 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.58  }
    1.59