wok-stable view nimrod/receipt @ rev 12338

Fixed a flag error in the receipt
author Brenton Scott <admin@trixarian.net>
date Mon Sep 24 09:13:21 2012 +0200 (2012-09-24)
parents b059ca4eea52
children e9646ed1b515
line source
1 # SliTaz package receipt.
3 PACKAGE="nimrod"
4 VERSION="0.9.0"
5 CATEGORY="development"
6 SHORT_DESC="The Nimrod programming language."
7 MAINTAINER="admin@trixarian.net"
8 TARBALL="nimrod_$VERSION.zip"
9 WEB_SITE="http://www.nimrod-code.org/"
10 WGET_URL="http://nimrod-code.org/download/$TARBALL"
11 DEPENDS="gcc glibc-base readline"
12 BUILD_DEPENDS="gcc glibc-dev readline-dev"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 chmod +x build.sh
19 chmod +x install.sh
20 ./build.sh
21 ./bin/nimrod c -d:release koch
22 ./koch boot -d:release
23 ./install.sh /usr/bin
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/etc $fs/etc
31 cp -a $_pkg/usr/lib $fs/usr
32 cp -a $_pkg/usr/share $fs/usr
33 }