wok view adminer/receipt @ rev 16504

Fix tcl build on ARM and add tcllib
author Christophe Lincoln <pankso@slitaz.org>
date Thu Apr 24 03:51:21 2014 +0200 (2014-04-24)
parents 372da2303ff1
children 3a87a5fb7626
line source
1 # SliTaz package receipt.
3 PACKAGE="adminer"
4 VERSION="3.3.4"
5 CATEGORY="misc"
6 SHORT_DESC="Database management in a single PHP file."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION"
10 WEB_SITE="http://www.adminer.org/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL.php"
13 DEPENDS="php"
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 [ -s "$SOURCES_REPOSITORY/$TARBALL" ] ||
21 wget -O "$SOURCES_REPOSITORY/$TARBALL" $WGET_URL
22 cp "$SOURCES_REPOSITORY/$TARBALL" index.php
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/var/www/$PACKAGE
29 cp $src/index.php $fs/var/www/$PACKAGE/
30 }