mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
* Referring the current haiku version explicitly is not needed, since the RequiresUpdater takes care of setting the version of Haiku used for building a package.
57 lines
1.4 KiB
Plaintext
57 lines
1.4 KiB
Plaintext
SUMMARY="A strategy game simulating a world wide war"
|
|
DESCRIPTION="\"What Went Wrong? it's a World Wide War!\" features a worldmap \
|
|
with every single country on this planet including Swaziland (great hello to \
|
|
all of you Swaziland BeOS users). It has real data for every country in the \
|
|
world (at least in the 70's), including population, PNB etc.
|
|
Using the editor, you can let the computer play alone and turn it in kind of \
|
|
war simulation software.
|
|
"
|
|
HOMEPAGE="http://lema.link-u.com/be/"
|
|
SRC_URI="http://lema.link-u.com/be/W6Haiku.zip"
|
|
CHECKSUM_SHA256="6393cb0f4d31728d575ccfc70d5c40153c610024163487d2e46b8db4e8aa3c58"
|
|
SRC_URI_2="http://lema.link-u.com/be/W6forR5-with-sources.zip"
|
|
CHECKSUM_SHA256_2="0e12d3a80d668a6d86c4d2ea67aa1c18d7ece5f218d2512b36f96cdf3071bbdf"
|
|
REVISION="1"
|
|
LICENSE="Public Domain"
|
|
COPYRIGHT="1998-1999 Santiago Lema"
|
|
|
|
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
|
|
|
|
PROVIDES="
|
|
w6 = $portVersion
|
|
app:w6 = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:make
|
|
cmd:gcc
|
|
"
|
|
|
|
SOURCE_DIR="W6Haiku"
|
|
SOURCE_DIR_2="W6"
|
|
|
|
PATCHES="w6-1.7.patch"
|
|
|
|
BUILD()
|
|
{
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
ARCHITECTURE=$(echo $buildArchitecture | sed 's/_/-/g')
|
|
|
|
APPDIR=$appsDir/W6
|
|
mkdir -p $APPDIR
|
|
cp -a objects.$ARCHITECTURE-release/W6Haiku $APPDIR/W6
|
|
cp -r $sourceDir2/w6s $APPDIR
|
|
cp -r $sourceDir2/help $APPDIR
|
|
addAppDeskbarSymlink $APPDIR/W6
|
|
}
|