wok view haserl/receipt @ rev 23749

updated xfsprogs (5.2.1 -> 5.6.0)
author Hans-G?nter Theisgen
date Fri May 01 15:39:32 2020 +0100 (2020-05-01)
parents 380ffe05937a
children ba7cbdb5749c
line source
1 # SliTaz package receipt.
3 PACKAGE="haserl"
4 VERSION="0.9.35"
5 CATEGORY="network"
6 SHORT_DESC="Small program that uses shell or Lua script to create cgi web scripts."
7 MAINTAINER="milka@konstelacioj.info"
8 LICENSE="GPL2"
9 WEB_SITE="http://haserl.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS=""
15 BUILD_DEPENDS="glibc-dev"
16 SUGGESTED="bash lua lua-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --bindir=/usr/bin \
23 $CONFIGURE_ARGS &&
24 make -j 1 &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 }