mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-23 04:00:05 +02:00
38 lines
749 B
Bash
38 lines
749 B
Bash
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="06a96a0c57d89f563b82474e1644acd93b0694523e78f8dbd6a8739f33f2d0c6"
|
|
|
|
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
|
|
}
|