diff --git a/games-action/lugaru/lugaru-1.2.recipe b/games-action/lugaru/lugaru-1.2.recipe index 874c6b395..f8dcf86bb 100644 --- a/games-action/lugaru/lugaru-1.2.recipe +++ b/games-action/lugaru/lugaru-1.2.recipe @@ -10,7 +10,7 @@ HOMEPAGE="https://osslugaru.gitlab.io/" COPYRIGHT="2017 OSS Lugaru Team" LICENSE="GNU GPL v2 CC-BY-SA-3.0" -REVISION="4" +REVISION="5" SOURCE_URI="https://bitbucket.org/osslugaru/lugaru/downloads/lugaru-$portVersion.tar.xz" CHECKSUM_SHA256="f3ea477caf78911c69939fbdc163f9f6517c7ef2267e716a0e050be1a166ef97" SOURCE_DIR="lugaru-$portVersion" @@ -59,18 +59,14 @@ BUILD_PREREQUIRES=" BUILD() { - mkdir -p build - cd build - cmake .. \ - -DCMAKE_BUILD_TYPE=Release \ + cmake -Bbuild -S. -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=$appsDir/Lugaru - make $jobArgs + make -C build $jobArgs } INSTALL() { - cd build - make install + make -C build install local APP_SIGNATURE="application/x-vnd.lugaru" local MAJOR="`echo "$portVersion" | cut -d. -f1`"