wok-next view haserl-lua/receipt @ rev 20963

Add hackdorte-artwork and remove appropriate old packages with dead homepages
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Sep 08 15:02:14 2018 +0300 (2018-09-08)
parents d43bf7aae921
children d5aab818505e
line source
1 # SliTaz package receipt.
3 PACKAGE="haserl-lua"
4 SOURCE="haserl"
5 VERSION="0.9.27"
6 CATEGORY="network"
7 SHORT_DESC="Small program that uses shell or Lua script to create cgi web scripts"
8 MAINTAINER="milka@konstelacioj.info"
9 LICENSE="GPL2"
10 WEB_SITE="http://haserl.sourceforge.net/"
11 REPOLOGY="haserl"
13 TARBALL="$SOURCE-$VERSION.tar.gz"
14 WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL"
16 DEPENDS=""
17 BUILD_DEPENDS="glibc-dev lua-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cd $src
23 ./configure \
24 --bindir=/usr/bin \
25 --with-lua \
26 --program-suffix=-lua \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$DESTDIR install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr
36 cp -a $install/usr/bin $fs/usr
37 SUGGESTED="bash lua lua-dev"
38 }