Recipe for Basilisk II.

This commit is contained in:
Adrien Destugues
2015-04-24 22:27:36 +02:00
parent b55da069c0
commit d454c73ab3
2 changed files with 154 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
SUMMARY="68k Macintosh emulator"
DESCRIPTION="Basilisk II is an Open Source 68k Macintosh emulator. That is, it \
allows you to run 68k MacOS software on your computer, even if you are using a \
different operating system. However, you still need a copy of MacOS and a \
Macintosh ROM image to use Basilisk II."
LICENSE="GNU GPL v2"
HOMEPAGE="http://basilisk.cebix.net/"
REVISION="1"
COPYRIGHT="1997-2015 Christian Bauer, Gwenolé Beauschene"
ARCHITECTURES="x86_gcc2"
SRC_URI="http://basilisk.cebix.net/downloads/BasiliskII_src_31052001.tar.gz"
SOURCE_DIR="BasiliskII-0.9"
CHECKSUM_SHA256="627b94b3aaf23c374d72c3084c6c648521a50ba459e53eb1c0532ed4e02925d5"
PROVIDES="
basiliskii = $portVersion
"
BUILD_REQUIRES="
haiku_devel
makefile_engine
"
BUILD_PREREQUIRES="
cmd:gcc
cmd:make
"
BUILD()
{
cd src/BeOS
make $jobArgs
}
INSTALL()
{
cd src/BeOS
make install INSTALL_DIR=$appsDir/BasiliskII
}