wok annotate haserl/receipt @ rev 15473

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 09 20:47:29 2013 +0000 (2013-11-09)
parents 02bbaa9d12ba
children f7f1e45f4243
rev   line source
milka@1134 1 # SliTaz package receipt.
milka@1134 2
milka@1134 3 PACKAGE="haserl"
pascal@9156 4 VERSION="0.9.27"
milka@1134 5 CATEGORY="network"
milka@1134 6 SHORT_DESC="Small program that uses shell or Lua script to create cgi web scripts"
milka@1134 7 MAINTAINER="milka@konstelacioj.info"
pascal@15000 8 LICENSE="GPL2"
milka@1134 9 SUGGESTED="bash lua lua-dev"
milka@1134 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
milka@1134 11 WEB_SITE="http://haserl.sourceforge.net/"
milka@1134 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
milka@1134 13
pascal@15000 14 DEPENDS=""
pascal@15000 15 BUILD_DEPENDS="glibc-dev"
pascal@15000 16
milka@1134 17 # Rules to configure and make the package.
milka@1134 18 compile_rules()
milka@1134 19 {
milka@1134 20 cd $src
milka@1134 21 ./configure \
milka@1134 22 --bindir=/usr/bin \
milka@1134 23 $CONFIGURE_ARGS
milka@1134 24 make
pascal@15000 25 make DESTDIR=$DESTDIR install
milka@1134 26 }
milka@1134 27
milka@1134 28 # Rules to gen a SliTaz package suitable for Tazpkg.
milka@1134 29 genpkg_rules()
milka@1134 30 {
milka@1134 31 mkdir -p $fs/usr
pascal@15000 32 cp -a $install/usr/bin $fs/usr
milka@1134 33 }