Files
haikuports/dev-lang/xamos/xamos-0.29.recipe
2015-07-02 11:13:12 -04:00

56 lines
1.2 KiB
Bash

SUMMARY="Cross-platform AMOS BASIC reimplementation"
DESCRIPTION="
This project is a complete re-write of jAMOS in C++ using SDL libraries and
(optional) Boost headers.
This initial release is run-only and does not feature an editor at this stage.
However, it is compatible with almost all programs created with the latest
jAMOS editor. All jAMOS examples (without AMAL) are running in XAMOS, often
with a serious speed boost over the Java original, particularly on low-end
platforms.
"
HOMEPAGE="http://sourceforge.net/projects/xamos"
SOURCE_URI="http://sourceforge.net/projects/xamos/files/XAMOS_src.zip"
CHECKSUM_SHA256="f559794ed7a443f00a21b3c0050e8ee70a9d1340ad41e46a5f87f5238bc7479e"
ARCHITECTURES="x86_gcc2"
LICENSE="BSD (2-clause)"
COPYRIGHT="2012 Mequa Innovations"
REVISION="1"
PROVIDES="
xamos = $portVersion
"
BUILD_REQUIRES="
haiku_devel
devel:libsdl
devel:sdl_image
devel:sdl_mixer
devel:sdl_ttf
devel:sdl_gfx
devel:libglu
devel:libjpeg
devel:libpng
devel:libvorbisfile
devel:libogg
devel:libfreetype
devel:libz
"
BUILD_PREREQUIRES="
cmd:make
cmd:gcc
"
SOURCE_DIR="XAMOS"
PATCHES="xamos-$portVersion.patchset"
BUILD() {
cd src
make -f Makefile_aros
}
INSTALL() {
false
}