Ubuntu Pastebin

Paste from ohnx at Fri, 2 Dec 2016 03:04:46 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
SUMMARY="2048 clone for Haiku"
DESCRIPTION="Clone of the popular 2048 game for Haiku OS
"
HOMEPAGE="https://github.com/TwoFX/Haiku2048"
COPYRIGHT="2015 Markus Himmel"
LICENSE="MIT"
REVISION="1"
SOURCE_URI="https://github.com/ohnx/Haiku2048/archive/1.0.0.zip"
CHECKSUM_SHA256="544243fb6f3ba70563891b642639e37034c497a88a21a6056d768084cdc457d7"

ARCHITECTURES="x86 x86_gcc2 x86_64"

PROVIDES="
	Haiku2048 = $portVersion
	cmd:Haiku2048 = $portVersion
"
REQUIRES="
	haiku
"

BUILD_REQUIRES="
	haiku_devel
"
BUILD_PREREQUIRES="
	cmd:gcc
	cmd:make
"

BUILD()
{
	make
}

INSTALL()
{
	make install
}
Download as text