0
0
Fork 0
haikuports/dev-lang/rebol/rebol-git_25033f897b.recipe

61 lines
1.5 KiB
Bash
Raw Permalink Normal View History

2014-01-04 01:36:03 +00:00
SUMMARY="A lightweight scripting language"
2014-01-02 21:40:56 +00:00
DESCRIPTION="
2014-01-04 01:36:03 +00:00
A scripting language that provides a lightweight platform for distributed \
computing and communication. It is mainly designed for network communications, \
2015-07-24 18:25:19 +00:00
providing effective solutions to modern network distributed applications."
2013-03-29 14:04:07 +00:00
HOMEPAGE="http://www.rebol.com/"
2018-08-03 06:14:14 +00:00
COPYRIGHT="2014 REBOL Technologies"
LICENSE="Apache v2"
REVISION="1"
2015-07-24 18:25:19 +00:00
SOURCE_URI="https://github.com/rebol/rebol/archive/25033f897b2bd466068d7663563cd3ff64740b94.tar.gz"
CHECKSUM_SHA256="ffe75f829fd414aa61466bb357362c9df02849cc4daf5febefc3195074761244"
SOURCE_DIR="rebol-25033f897b2bd466068d7663563cd3ff64740b94"
SOURCE_URI_2="http://ports-space.haiku-files.org/dev-lang/rebol/r3-make.zip"
CHECKSUM_SHA256_2="2a6dda70211787fcca4249c922378e891ca287c8c110affb386b5cc939ba4798"
2015-07-24 18:25:19 +00:00
SOURCE_URI_3="https://github.com/rebol/rebol/archive/25033f897b2bd466068d7663563cd3ff64740b94.tar.gz"
CHECKSUM_SHA256_3="ffe75f829fd414aa61466bb357362c9df02849cc4daf5febefc3195074761244"
2018-08-03 06:14:14 +00:00
ARCHITECTURES="!all x86_gcc2 x86"
2014-01-04 01:36:03 +00:00
PROVIDES="
rebol = $portVersion
cmd:r3 = $portVersion
"
REQUIRES="
haiku
2014-01-04 01:36:03 +00:00
"
BUILD_REQUIRES="
haiku_devel
2014-01-04 01:36:03 +00:00
"
BUILD_PREREQUIRES="
cmd:gcc
cmd:make
cmd:nm
cmd:strip
"
BUILD()
{
2014-01-04 01:36:03 +00:00
cd make
cp $sourceDir2/r3-make-$targetArchitecture r3-make
chmod +x r3-make
2013-03-29 14:04:07 +00:00
make make OS_ID=0.5.75
make prep
make
}
INSTALL()
{
2014-01-04 01:36:03 +00:00
mkdir -p $binDir
cp make/r3 $binDir
2013-03-29 14:04:07 +00:00
}
TEST()
{
2014-01-04 01:36:03 +00:00
[ -d tests ] && rm -rf tests
mkdir tests
2013-03-29 14:04:07 +00:00
cd tests
2014-01-04 01:36:03 +00:00
../make/r3 $sourceDir3/rebol-test-502075cc3a4116c1785081e602eb8e28efd3247f/run-recover.r
2013-03-29 14:04:07 +00:00
}