wok annotate ragel/receipt @ rev 22130

updated wifidog (1.1.5 -> 1.3.0)
author Hans-G?nter Theisgen
date Mon Nov 04 11:16:52 2019 +0100 (2019-11-04)
parents
children 2f230197370e
rev   line source
Hans-G?nter@21561 1 # SliTaz package receipt.
Hans-G?nter@21561 2
Hans-G?nter@21561 3 PACKAGE="ragel"
Hans-G?nter@21561 4 VERSION="6.10"
Hans-G?nter@21561 5 CATEGORY="development"
Hans-G?nter@21561 6 SHORT_DESC="Compiles executable finite state machines from regular languages."
Hans-G?nter@21561 7 MAINTAINER="developer@slitaz.org"
Hans-G?nter@21561 8 LICENSE="GPL2"
Hans-G?nter@21561 9 WEB_SITE="https://www.colm.net/open-source/ragel/"
Hans-G?nter@21561 10
Hans-G?nter@21561 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@21561 12 WGET_URL="https://www.colm.net/files/$PACKAGE/$TARBALL"
Hans-G?nter@21561 13
Hans-G?nter@21561 14 # Rules to configure and make the package.
Hans-G?nter@21561 15 compile_rules()
Hans-G?nter@21561 16 {
Hans-G?nter@21561 17 ./configure $CONFIGURE_ARGS &&
Hans-G?nter@21561 18 make &&
Hans-G?nter@21561 19 make DESTDIR=$DESTDIR install
Hans-G?nter@21561 20 }
Hans-G?nter@21561 21
Hans-G?nter@21561 22 # Rules to gen a SliTaz package suitable for Tazpkg.
Hans-G?nter@21561 23 genpkg_rules()
Hans-G?nter@21561 24 {
Hans-G?nter@21561 25 mkdir -p $fs/usr
Hans-G?nter@21561 26 cp -a $install/usr/bin $fs/usr
Hans-G?nter@21561 27 }