Files
haikuports/games-engines/hugo/hugo-3.1.03.recipe
Mikołaj 'lich' Halber 9f0ba8b44a Hugo 3.1.03: Added recipe
2015-12-28 22:57:47 +01:00

51 lines
1.3 KiB
Bash

SUMMARY="An Interactive Fiction Design System"
DESCRIPTION="Hugo is a complete design system for developing interactive \
fiction. It has been used for creating classic text adventure games in the \
Infocom tradition, for developing commercial games, and for prototyping other \
applications. In addition to an extremely sophisticated full-sentence-cognizant \
interface."
HOMEPAGE="http://www.generalcoffee.com/old/hugo.html"
SOURCE_URI="http://www.ifarchive.org/if-archive/programming/hugo/source/hugov31_unix_source.tar.gz"
CHECKSUM_SHA256="bf5ec8f4331e7d1ce18c304fc9131d759e371310d5fe894ffe37609eabd08945"
REVISION="1"
LICENSE="hugo"
COPYRIGHT="1996-2005 Kent Tessman"
SOURCE_DIR="hugov$portVersion"
ARCHITECTURES="?x86_gcc2 ?x86 ?x86_64"
SECONDARY_ARCHITECTURES="x86"
PROVIDES="
hugo$secondaryArchSuffix = $portVersion
cmd:hc$secondaryArchSuffix = $portVersion
cmd:hd$secondaryArchSuffix = $portVersion
cmd:he$secondaryArchSuffix = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libncurses$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libncurses$secondaryArchSuffix
"
BUILD_PREREQUIRES="
cmd:gcc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
cmd:make
"
BUILD()
{
make $jobArgs
}
INSTALL()
{
mkdir -p $binDir
cp hc hd he $binDir/
}