wok view ragel/receipt @ rev 22421

I see these >10 packages also got version updates due to xfce 4.12.0
author Erkan Yilmaz <erkan@slitaz.org>
date Sun Dec 15 09:13:38 2019 +0000 (2019-12-15)
parents
children 2f230197370e
line source
1 # SliTaz package receipt.
3 PACKAGE="ragel"
4 VERSION="6.10"
5 CATEGORY="development"
6 SHORT_DESC="Compiles executable finite state machines from regular languages."
7 MAINTAINER="developer@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.colm.net/open-source/ragel/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://www.colm.net/files/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ./configure $CONFIGURE_ARGS &&
18 make &&
19 make DESTDIR=$DESTDIR install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr
26 cp -a $install/usr/bin $fs/usr
27 }