wok view esterel/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents d8cc3407c851
children ca38ecbe9976
line source
1 # SliTaz package receipt.
3 PACKAGE="esterel"
4 VERSION="5.92"
5 CATEGORY="development"
6 SHORT_DESC="Esterel language tools."
7 MAINTAINER="rcx@zoominternet.net"
8 LICENSE="other"
9 TARBALL="$PACKAGE-$VERSION.tgz"
10 WEB_SITE="https://web.imt-atlantique.fr/x-info/lego/"
11 WGET_URL="http://users.zoominternet.net/~rcx/$TARBALL"
13 DEPENDS="glibc-base"
14 BUILD_DEPENDS=""
16 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - https://www-sop.inria.fr/meije/esterel/releasenotes.html 2>/dev/null | \
20 sed '/RELEASE NOTES/!d;s|.* V||;s| SYSTEM.*||;s|_|.|g;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 mkdir -p $DESTDIR/usr
27 cp -a $src/bin $DESTDIR/usr
28 cp -a $src/include $DESTDIR/usr
29 cp -a $src/share $DESTDIR/usr
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs
36 cp -a $install/* $fs
37 }