wok view freetds/receipt @ rev 23275

updated par2 (0.8.0 -> 0.8.1)
author Hans-G?nter Theisgen
date Sat Mar 28 15:42:00 2020 +0100 (2020-03-28)
parents 9358cf58d82f
children 539876c71561
line source
1 # SliTaz package receipt.
3 PACKAGE="freetds"
4 VERSION="1.1.24"
5 CATEGORY="system-tools"
6 SHORT_DESC="Microsoft SQL Server and Sybase databases client libraries."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.freetds.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="${WEB_SITE}files/stable/$TARBALL"
14 DEPENDS="libunixODBC ncurses readline"
15 BUILD_DEPENDS="readline-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --sysconfdir=/etc \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS 2>&1 | grep -v /config.rpath &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
35 cp -a $install/etc $fs
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/lib/*.so* $fs/usr/lib
38 }