wok-6.x diff libiodbc/receipt @ rev 21240

updated libiodbc and libiodbc-dev (3.52.7 -> 3.52.12)
author Hans-G?nter Theisgen
date Thu Apr 11 14:44:37 2019 +0100 (2019-04-11)
parents d572013dbc68
children da1bb3322610
line diff
     1.1 --- a/libiodbc/receipt	Sat Feb 22 11:25:10 2014 +0100
     1.2 +++ b/libiodbc/receipt	Thu Apr 11 14:44:37 2019 +0100
     1.3 @@ -1,29 +1,33 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libiodbc"
     1.7 -VERSION="3.52.7"
     1.8 +VERSION="3.52.12"
     1.9  CATEGORY="system-tools"
    1.10  SHORT_DESC="Independent Open DataBase Connectivity."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12  LICENSE="GPL2"
    1.13 -TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14  WEB_SITE="http://www.iodbc.org/"
    1.15 -WGET_URL="http://www.iodbc.org/downloads/iODBC/$TARBALL"
    1.16 +
    1.17 +TARBALL="$PACKAGE-$VERSION.zip"
    1.18 +WGET_URL="https://github.com/openlink/iODBC/archive/v$VERSION.zip"
    1.19  
    1.20  DEPENDS=""
    1.21 -BUILD_DEPENDS=""
    1.22 +BUILD_DEPENDS="automake"
    1.23  
    1.24  # Rules to configure and make the package.
    1.25  compile_rules()
    1.26  {
    1.27 +	./autogen.sh &&
    1.28  	./configure $CONFIGURE_ARGS &&
    1.29 -	make && make install
    1.30 +	make -j 1 &&
    1.31 +	make install
    1.32  }
    1.33  
    1.34  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.35  genpkg_rules()
    1.36  {
    1.37  	mkdir -p $fs/usr/lib
    1.38 -	cp -a $install/usr/bin $fs/usr
    1.39 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.40 +
    1.41 +	cp -a $install/usr/bin		$fs/usr
    1.42 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.43  }