wok-current diff unixODBC/receipt @ rev 15846
python-distribute: Fixed WGET_URL.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Mon Jan 27 06:32:12 2014 +0000 (2014-01-27) |
parents | 8e4c74abdf74 |
children | 5613d51e1fdf |
line diff
1.1 --- a/unixODBC/receipt Mon Jan 02 23:06:19 2012 +0100 1.2 +++ b/unixODBC/receipt Mon Jan 27 06:32:12 2014 +0000 1.3 @@ -5,11 +5,13 @@ 1.4 CATEGORY="system-tools" 1.5 SHORT_DESC="ODBC for unix." 1.6 MAINTAINER="pascal.bellard@slitaz.org" 1.7 +LICENSE="LGPL2.1" 1.8 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.9 WEB_SITE="http://www.unixodbc.org/" 1.10 WGET_URL="${WEB_SITE}$TARBALL" 1.11 +TAGS="database" 1.12 + 1.13 DEPENDS="libunixODBC readline" 1.14 -TAGS="database" 1.15 1.16 # Rules to configure and make the package. 1.17 compile_rules() 1.18 @@ -19,14 +21,14 @@ 1.19 --disable-gui --sysconfdir=/etc \ 1.20 --mandir=/usr/share/man $CONFIGURE_ARGS && 1.21 make $MAKEFLAGS && 1.22 - make DESTDIR=$PWD/_pkg install 1.23 + make DESTDIR=$DESTDIR install 1.24 } 1.25 1.26 # Rules to gen a SliTaz package suitable for Tazpkg. 1.27 genpkg_rules() 1.28 { 1.29 mkdir -p $fs/usr/lib 1.30 - cp -a $_pkg/etc $fs 1.31 - cp -a $_pkg/usr/bin $fs/usr 1.32 + cp -a $install/etc $fs 1.33 + cp -a $install/usr/bin $fs/usr 1.34 } 1.35