wok annotate ragel/receipt @ rev 23696

Up libtcplay (3.3)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 27 09:29:39 2020 +0000 (2020-04-27)
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 }