mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 05:10:05 +02:00
tiny_first, new recipe (#8591)
This commit is contained in:
39
dev-lang/tiny/tiny-0.1.01.recipe
Normal file
39
dev-lang/tiny/tiny-0.1.01.recipe
Normal file
@@ -0,0 +1,39 @@
|
||||
SUMMARY="A small Basic like RPN language"
|
||||
DESCRIPTION="Tiny is an RPN based language that roughly fills the same nitch as tiny basic.
|
||||
It is an integer only (for now), line numbered like BASIC, small interpreter."
|
||||
HOMEPAGE="https://gitlab.com/waspentalive/tiny/-/archive/First/tiny-First.tar.bz2"
|
||||
COPYRIGHT="2006-2023 Ronald Alan Hudson"
|
||||
LICENSE="GNU GPL v3"
|
||||
REVISION="1"
|
||||
SOURCE_URI="https://gitlab.com/waspentalive/tiny/-/archive/First/tiny-First.tar.bz2"
|
||||
CHECKSUM_SHA256="bb56b8da6b01d34f07672dcbbdd2d0d12229c9d0d21705fb33dc454d6d223ce5"
|
||||
SOURCE_DIR="tiny-First"
|
||||
|
||||
ARCHITECTURES="all"
|
||||
|
||||
PROVIDES="
|
||||
tiny = $portVersion
|
||||
cmd:tiny = $portVersion
|
||||
"
|
||||
REQUIRES="
|
||||
haiku
|
||||
"
|
||||
|
||||
BUILD_REQUIRES="
|
||||
haiku_devel
|
||||
"
|
||||
BUILD_PREREQUIRES="
|
||||
cmd:make
|
||||
cmd:gcc
|
||||
"
|
||||
|
||||
BUILD()
|
||||
{
|
||||
make $jobArgs
|
||||
}
|
||||
|
||||
INSTALL()
|
||||
{
|
||||
mkdir -p $binDir
|
||||
cp -a tiny $binDir
|
||||
}
|
||||
Reference in New Issue
Block a user