wok annotate libiodbc/receipt @ rev 25269
tightvnc/Imake.tmpl: update ArCmd
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Jul 17 15:19:56 2022 +0000 (2022-07-17) |
parents | 5ea0ce1cecc0 |
children | 1acbab5be51c |
rev | line source |
---|---|
pankso@15932 | 1 # SliTaz package receipt. |
pankso@15932 | 2 |
pankso@15932 | 3 PACKAGE="libiodbc" |
Hans-G?nter@24801 | 4 VERSION="3.52.15" |
pankso@15932 | 5 CATEGORY="system-tools" |
pankso@15932 | 6 SHORT_DESC="Independent Open DataBase Connectivity." |
pankso@15932 | 7 MAINTAINER="pankso@slitaz.org" |
pankso@15932 | 8 LICENSE="GPL2" |
pankso@15932 | 9 WEB_SITE="http://www.iodbc.org/" |
Hans-G?nter@21240 | 10 |
Hans-G?nter@24801 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
Hans-G?nter@24801 | 12 WGET_URL="https://github.com/openlink/iODBC/archive/refs/tags/v$VERSION.tar.gz" |
pankso@15932 | 13 |
pankso@15932 | 14 DEPENDS="" |
pascal@21246 | 15 BUILD_DEPENDS="automake libtool" |
pankso@15932 | 16 |
pascal@24055 | 17 current_version() |
pascal@24055 | 18 { |
pascal@24055 | 19 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ |
pascal@24055 | 20 sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' |
pascal@24055 | 21 } |
pascal@24055 | 22 |
pankso@15932 | 23 # Rules to configure and make the package. |
pankso@15932 | 24 compile_rules() |
pankso@15932 | 25 { |
Hans-G?nter@21240 | 26 ./autogen.sh && |
pankso@15932 | 27 ./configure $CONFIGURE_ARGS && |
pascal@21246 | 28 make && |
Hans-G?nter@21240 | 29 make install |
pankso@15932 | 30 } |
pankso@15932 | 31 |
pankso@15932 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@15932 | 33 genpkg_rules() |
pankso@15932 | 34 { |
Hans-G?nter@24801 | 35 cook_copy_folders bin |
Hans-G?nter@24801 | 36 cook_copy_files *.so* |
pankso@15932 | 37 } |