wok view libiodbc/receipt @ rev 23809

linld: add isoboot (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun May 24 16:43:25 2020 +0000 (2020-05-24)
parents da1bb3322610
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="libiodbc"
4 VERSION="3.52.13"
5 CATEGORY="system-tools"
6 SHORT_DESC="Independent Open DataBase Connectivity."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.iodbc.org/"
11 TARBALL="$PACKAGE-$VERSION.zip"
12 WGET_URL="https://github.com/openlink/iODBC/archive/v$VERSION.zip"
14 DEPENDS=""
15 BUILD_DEPENDS="automake libtool"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./autogen.sh &&
21 ./configure $CONFIGURE_ARGS &&
22 make &&
23 make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }