wok view adminer/receipt @ rev 23406

updated perl-text-template (1.44 -> 1.58)
author Hans-G?nter Theisgen
date Wed Apr 01 06:37:49 2020 +0100 (2020-04-01)
parents bdd5dd52ad52
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="adminer"
4 VERSION="4.7.5"
5 CATEGORY="misc"
6 SHORT_DESC="Database management in a single PHP file."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2 Apache"
9 WEB_SITE="https://www.adminer.org/"
11 TARBALL="$PACKAGE-$VERSION.zip"
12 WGET_URL="https://github.com/vrana/$PACKAGE/releases/download/v$VERSION/$TARBALL"
14 SUGGESTED="php-mysql php-pgsql php-sqlite"
15 DEPENDS="php"
16 BUILD_DEPENDS="php-cli php-mysql php-pgsql php-sqlite"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 php compile.php 2>&1 | sed '/^PHP Warning/d'
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/var/www/$PACKAGE
28 cp $src/adminer-$VERSION.php $fs/var/www/$PACKAGE/index.php
29 }