mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-08 21:00:05 +02:00
41 lines
717 B
Bash
41 lines
717 B
Bash
SUMMARY="2048 game clone for Haiku"
|
|
DESCRIPTION="Join the numbers and get to the 2048 tile!"
|
|
HOMEPAGE="https://github.com/threedeyes/2Pow"
|
|
COPYRIGHT="2014-2024 Gerasim Troeglazov"
|
|
LICENSE="MIT"
|
|
REVISION="1"
|
|
SOURCE_URI="https://github.com/threedeyes/2Pow/archive/$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="37bec9987851ae7434017ad6dc597d93b30eec9205a42a52035c0c9c7ec629a8"
|
|
SOURCE_DIR="2Pow-$portVersion"
|
|
|
|
ARCHITECTURES="all"
|
|
|
|
PROVIDES="
|
|
2pow = $portVersion
|
|
app:2Pow = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:g++
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make
|
|
make bindcatalogs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install INSTALL_DIR=$appsDir
|
|
addAppDeskbarSymlink $appsDir/2Pow
|
|
}
|