DeeperPeople: create recipe (#1998)

This commit is contained in:
Owen
2018-01-01 19:35:36 -08:00
committed by Scott McCreary
parent 695733d4a4
commit 1f428b823a

View File

@@ -0,0 +1,42 @@
SUMMARY="A contacts application"
DESCRIPTION="DeeperPeople, a contacts application for Haiku."
APP="DeeperPeople"
HOMEPAGE="https://github.com/HaikuArchives/$APP"
COPYRIGHT="1991-1999 Be Incorporated"
LICENSE="BSD (3-clause)"
REVISION="1"
srcGitRev="a20c5ad566d85274c5f9b60e8fab82f9ec165c02"
SOURCE_URI="$HOMEPAGE/archive/$srcGitRev.tar.gz"
CHECKSUM_SHA256="405a50294e30004073d650c608115e9a854d887b24fd0d153281791017606a7c"
SOURCE_DIR="$APP-$srcGitRev"
ARCHITECTURES="x86_gcc2 !x86_64"
PROVIDES="
deeperpeople = $portVersion
app:$APP = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:g++
cmd:make
"
BUILD()
{
make -C src OBJ_DIR=objects $jobArgs
}
INSTALL()
{
install -d $appsDir
install -t $appsDir src/objects/$APP
addAppDeskbarSymlink $appsDir/$APP
}