From 68809e02a8dd76386ba53de5ab0916f8512e3068 Mon Sep 17 00:00:00 2001 From: dokutan <54861821+dokutan@users.noreply.github.com> Date: Tue, 1 Nov 2022 09:29:16 +0100 Subject: [PATCH] fennel: add new recipe (#7331) * fennel: add new recipe, version 1.2.1 * Fix DESCRIPTION of fennel --- dev-lang/fennel/fennel-1.2.1.recipe | 37 +++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 dev-lang/fennel/fennel-1.2.1.recipe diff --git a/dev-lang/fennel/fennel-1.2.1.recipe b/dev-lang/fennel/fennel-1.2.1.recipe new file mode 100644 index 000000000..d4046d004 --- /dev/null +++ b/dev-lang/fennel/fennel-1.2.1.recipe @@ -0,0 +1,37 @@ +SUMMARY="Lisp-like language that compiles to Lua" +DESCRIPTION="Fennel is a programming language that brings together the speed, simplicity, \ +and reach of Lua with the flexibility of a lisp syntax and macro system." +HOMEPAGE="https://fennel-lang.org" +COPYRIGHT="2016-2022 Calvin Rose and contributors" +LICENSE="MIT" +REVISION="1" +SOURCE_URI="https://fennel-lang.org/downloads/fennel-$portVersion.tar.gz" +CHECKSUM_SHA256="27aa830ec70bb56a559fa367f385c2a2f4e4c1f03c8d165770e4921b7ede1d46" + +ARCHITECTURES="all" + +PROVIDES=" + fennel = $portVersion + cmd:fennel = $portVersion + " +REQUIRES=" + haiku + lua + " + +BUILD_REQUIRES=" + " +BUILD_PREREQUIRES=" + " + +BUILD() +{ + : +} + +INSTALL() +{ + mkdir -p $binDir $manDir/man1 + cp fennel $binDir + cp fennel.1 $manDir/man1 +}