wok-next view mdbtools/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents 556349764d57
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="mdbtools"
4 VERSION="0.6pre1"
5 CATEGORY="development"
6 SHORT_DESC="Export Microsoft's Access database"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://mdbtools.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 BUILD_DEPENDS="bison flex unixODBC-dev glib-dev readline-dev"
16 compile_rules() {
17 sed -i 's|.*mdb_backends;|// &|' include/mdbtools.h
19 ./configure \
20 --enable-sql \
21 --with-unixodbc=/usr \
22 $CONFIGURE_ARGS &&
23 fix libtool &&
24 make &&
25 make DESTDIR=$install install
26 }
28 genpkg_rules() {
29 copy @std @dev
30 DEPENDS="ncurses readline glib libunixODBC libltdl"
31 }