Ubuntu Pastebin

Paste from ohnx at Sat, 3 Dec 2016 18:40:49 +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
38
39
40
41
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/v1.0.0.zip"
CHECKSUM_SHA256="171793f0f138f7cbc743bd04ad6c465a784506ed8917ab23cb3c018dfdee7832"

ARCHITECTURES="x86 x86_gcc2 x86_64"

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

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

BUILD()
{
	make OBJ_DIR=objects
}

INSTALL()
{
	mkdir -p $appsDir
	
	cp -a objects/Haiku2048 $appsDir
	addAppDeskbarSymlink $appsDir/Haiku2048
}
Download as text