mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
Switch these 5 recipes to a safe SOURCE_URI: * microbe-20130728 * minimizeall-1.0.0 * optipngtranslator-0.0.1 * vwget-20141229 * minesweeper-20150109 Delete these 9 old recipes (and their patches): * libmicro-0.4.1 * postgresql-9.0.4 & 9.2.3 * redis-2.2.11 * wolfssl-1.6.5 & 1.8.0 & 2.0.2 & 2.5.0 * numpy-1.4.1
47 lines
979 B
Bash
47 lines
979 B
Bash
SUMMARY="A Windows Minesweeper clone"
|
|
DESCRIPTION="Minesweeper is a clone of the original Windows minesweeper game. \
|
|
It supports different board sizes and best time saving."
|
|
HOMEPAGE="https://github.com/HaikuArchives/Minesweeper"
|
|
REVISION="4"
|
|
srcGitRev="702046e61588c953e759f7792930c5acc258359a"
|
|
SOURCE_URI="$HOMEPAGE/archive/$srcGitRev.tar.gz"
|
|
CHECKSUM_SHA256="f532980a4f507375a982c2efcc09118e5a8cfedb9fd0775563ed236c2a70304f"
|
|
SOURCE_DIR="minesweeper-$srcGitRev"
|
|
LICENSE="MIT"
|
|
COPYRIGHT="
|
|
2013 Tri-Edge AI
|
|
2015 Josef Gajdusek
|
|
"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
|
|
PROVIDES="
|
|
minesweeper = $portVersion
|
|
app:minesweeper = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:make
|
|
cmd:gcc
|
|
"
|
|
|
|
USER_SETTINGS_FILES="settings/Minesweeper_settings"
|
|
|
|
BUILD()
|
|
{
|
|
make -C src $jobArgs OBJ_DIR=objects
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp -a src/objects/Minesweeper $appsDir
|
|
addAppDeskbarSymlink $appsDir/Minesweeper
|
|
}
|