Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: haikuports/haikuports
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5b02ba0baa2e
Choose a base ref
...
head repository: haikuports/haikuports
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e7459e6c6501
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Aug 5, 2021

  1. BeMines: do "make bindcatalogs"

    ...otherwise all the translating work was for nothing...
    Humdinger committed Aug 5, 2021
    Copy the full SHA
    e7459e6 View commit details
Showing with 8 additions and 5 deletions.
  1. +8 −5 haiku-games/bemines/bemines-1.1.1.recipe
13 changes: 8 additions & 5 deletions haiku-games/bemines/bemines-1.1.1.recipe
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ COPYRIGHT="2009 Jon Yoder
2018-2020 Kevin Adams, Adrien Destugues, Humdinger, Raheem Idowu, Janus, \
Justin Stressman"
LICENSE="MIT"
REVISION="1"
REVISION="2"
SOURCE_URI="$HOMEPAGE/archive/v$portVersion.tar.gz"
CHECKSUM_SHA256="6e0ad89f0407c1897633dc6248cc6592ba9bc42173539bbcab78c16c13143511"
SOURCE_DIR="BeMines-$portVersion"
@@ -27,23 +27,26 @@ ARCHITECTURES="x86_gcc2 x86_64"

PROVIDES="
bemines = $portVersion
app:BeMines
app:BeMines = $portVersion
"
REQUIRES="
haiku
"

BUILD_PREREQUIRES="
BUILD_REQUIRES="
haiku_devel
"

BUILD_PREREQUIRES="
makefile_engine
cmd:g++
cmd:make
"

BUILD()
{
cd src
make
make $jobArgs
make bindcatalogs
}

INSTALL()