diff --git a/games-arcade/burgerspace/burgerspace-1.9.2.recipe b/games-arcade/burgerspace/burgerspace-1.9.2.recipe index ea7d2441f..1dd020323 100644 --- a/games-arcade/burgerspace/burgerspace-1.9.2.recipe +++ b/games-arcade/burgerspace/burgerspace-1.9.2.recipe @@ -5,7 +5,7 @@ until they end up on the plates at the bottom of the screen." HOMEPAGE="https://perso.b2b2c.ca/~sarrazip/dev/burgerspace.html" COPYRIGHT="2013 Pierre Sarrazin" LICENSE="GNU GPL v2" -REVISION="2" +REVISION="3" SOURCE_URI="https://perso.b2b2c.ca/~sarrazip/dev/burgerspace-$portVersion.tar.gz" CHECKSUM_SHA256="34b0feccf543b11f9f9a182203d67cd453675255fed4b745e4e74c121b211bf2" SOURCE_DIR="burgerspace-$portVersion" @@ -17,24 +17,24 @@ SECONDARY_ARCHITECTURES="x86" PROVIDES=" burgerspace$secondaryArchSuffix = $portVersion app:BurgerSpace - cmd:burgerspace_server$secondaryArchSuffix + cmd:burgerspace_server " REQUIRES=" haiku$secondaryArchSuffix lib:libflatzebra_0.1$secondaryArchSuffix - lib:libgl$secondaryArchSuffix - lib:libsdl$secondaryArchSuffix - lib:libsdl_image$secondaryArchSuffix - lib:libsdl_mixer$secondaryArchSuffix + lib:libGL$secondaryArchSuffix + lib:libSDL_1.2$secondaryArchSuffix + lib:libSDL_image_1.2$secondaryArchSuffix + lib:libSDL_mixer_1.2$secondaryArchSuffix " BUILD_REQUIRES=" haiku${secondaryArchSuffix}_devel devel:libflatzebra_0.1$secondaryArchSuffix - devel:libgl$secondaryArchSuffix - devel:libsdl$secondaryArchSuffix - devel:libsdl_image$secondaryArchSuffix - devel:libsdl_mixer$secondaryArchSuffix + devel:libGL$secondaryArchSuffix + devel:libSDL$secondaryArchSuffix + devel:libSDL_image$secondaryArchSuffix + devel:libSDL_mixer$secondaryArchSuffix " BUILD_PREREQUIRES=" cmd:autoconf @@ -46,18 +46,21 @@ BUILD_PREREQUIRES=" BUILD() { - runConfigure ./configure LDFLAGS='-lnetwork' + runConfigure --omit-dirs binDir \ + ./configure --bindir=$prefix/bin \ + LDFLAGS='-lnetwork' make $jobArgs } INSTALL() { - make install mkdir -p $appsDir - mv $binDir/burgerspace $appsDir/BurgerSpace - addResourcesToBinaries $portDir/additional-files/burgerspace.rdef $appsDir/BurgerSpace + make install + mv $prefix/bin/burgerspace $appsDir/BurgerSpace + addResourcesToBinaries $portDir/additional-files/burgerspace.rdef \ + $appsDir/BurgerSpace addAppDeskbarSymlink $appsDir/BurgerSpace BurgerSpace - + # remove obsolete files rm -rf $dataDir/{applications,pixmaps} }