# HG changeset patch # User Hans-G?nter Theisgen # Date 1659199545 -3600 # Node ID 1ec8e7f04fbf75a8e8cd6f769aa36bd7e137303f # Parent 82316779b3fb0a8831f0dced99ea6a34eac99bcd updated unixODBC, unixODBC-dev and libunixODBC (2.3.7 -> 2.3.11) diff -r 82316779b3fb -r 1ec8e7f04fbf libunixODBC/receipt --- a/libunixODBC/receipt Sat Jul 30 17:32:11 2022 +0100 +++ b/libunixODBC/receipt Sat Jul 30 17:45:45 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="libunixODBC" -VERSION="2.3.7" +VERSION="2.3.11" CATEGORY="system-tools" SHORT_DESC="ODBC for unix - libraries." MAINTAINER="pascal.bellard@slitaz.org" @@ -15,6 +15,5 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_files *.so* } diff -r 82316779b3fb -r 1ec8e7f04fbf unixODBC-dev/receipt --- a/unixODBC-dev/receipt Sat Jul 30 17:32:11 2022 +0100 +++ b/unixODBC-dev/receipt Sat Jul 30 17:45:45 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="unixODBC-dev" -VERSION="2.3.7" +VERSION="2.3.11" CATEGORY="development" SHORT_DESC="ODBC for unix - development files." MAINTAINER="pascal.bellard@slitaz.org" @@ -16,8 +16,5 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*a $fs/usr/lib + get_dev_files } diff -r 82316779b3fb -r 1ec8e7f04fbf unixODBC/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/unixODBC/description.txt Sat Jul 30 17:45:45 2022 +0100 @@ -0,0 +1,3 @@ +ODBC is an open specification for providing application developers with a +predictable API with which to access Data Sources. +Data Sources include SQL Servers and any Data Source with an ODBC Driver. diff -r 82316779b3fb -r 1ec8e7f04fbf unixODBC/receipt --- a/unixODBC/receipt Sat Jul 30 17:32:11 2022 +0100 +++ b/unixODBC/receipt Sat Jul 30 17:45:45 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="unixODBC" -VERSION="2.3.7" +VERSION="2.3.11" CATEGORY="system-tools" TAGS="database" SHORT_DESC="ODBC for unix." @@ -17,6 +17,8 @@ HOST_ARCH="i486 arm" +# @maintainer: Please update also libunixODBC + # What is the latest version available today? current_version() { @@ -31,15 +33,13 @@ --sysconfdir=/etc \ --disable-gui \ $CONFIGURE_ARGS && - make $MAKEFLAGS && - make DESTDIR=$DESTDIR install + make $MAKEFLAGS LDFLAGS="$LDFLAGS -lrt" && + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - - cp -a $install/etc $fs - cp -a $install/usr/bin $fs/usr + cook_copy_folders bin + cook_copy_folders etc }