fennel: add new recipe (#7331)

* fennel: add new recipe, version 1.2.1

* Fix DESCRIPTION of fennel
This commit is contained in:
dokutan
2022-11-01 09:29:16 +01:00
committed by GitHub
parent e8f9f19064
commit 68809e02a8

View File

@@ -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
}