Files
haikuports/haiku-apps/chat/chat-20100903.recipe
Humdinger 4b87f53b6a Mostly recipe cosmetics: improved SUMMARY/DESCRIPTION and re-ordering blocks
and:

*	befar
	Remove unneeded $secondaryArchSuffix
	Use g++

*	mirrormagic
	Remove unneeded $secondaryArchSuffix

*	slime_volley
	Replaced slime_volley with slimevolley in PROVIDES
	Add lib:libsdl_net in REQUIRES

*	super_transball
	Remove unneeded $secondaryArchSuffix
	Replaced super_transball with stransball2 in PROVIDES
2015-08-26 19:52:24 +02:00

48 lines
1.0 KiB
Bash

SUMMARY="A XMPP client"
DESCRIPTION="Chat is a tiny (about 300KiB) XMPP client. It supports core XMPP \
protocol, multi-user chat, Google accounts, Psi bookmarks, In-band \
registration and other features. Chat is the simplest and smallest client \
that supports XMPP Advanced Client 2009 profile."
HOMEPAGE="http://synrc.com/client/chat/haiku/"
COPYRIGHT="2010-2014 Maxim Sokhatsky"
LICENSE="MIT"
REVISION="2"
SOURCE_URI="git+https://github.com/devaspot/chat.git"
ARCHITECTURES="x86_gcc2 x86"
PROVIDES="
chat = $portVersion
app:Chat = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libssl$secondaryArchSuffix
lib:libexpat$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libssl$secondaryArchSuffix
devel:libexpat$secondaryArchSuffix
"
BUILD_PREREQUIRES="
makefile_engine
cmd:gcc$secondaryArchSuffix
cmd:make
cmd:which
"
BUILD()
{
cd src
BUILDHOME=`finddir B_SYSTEM_DEVELOP_DIRECTORY` make
}
INSTALL()
{
mkdir -p $appsDir
cp src/objects.*-release/Chat $appsDir/Chat
addAppDeskbarSymlink $appsDir/Chat "Chat"
}