mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-03 05:28:53 +02:00
49 lines
1.1 KiB
Bash
49 lines
1.1 KiB
Bash
SUMMARY="A XMPP client"
|
|
DESCRIPTION="
|
|
Haiku Chat is tiny, about 300KB XMPP client. It supports core XMPP protocol, \
|
|
multi-user chat, Google accounts, Psi bookmarks, In-band registration and \
|
|
other features. It is written for Haiku, free open-source operating system \
|
|
inspired by BeOS. Haiku Chat is simplest and smallest client that supports \
|
|
XMPP Advanced Client 2009 profile.
|
|
"
|
|
HOMEPAGE="http://synrc.com/client/chat/haiku/"
|
|
SOURCE_URI="git+https://github.com/devaspot/chat.git"
|
|
LICENSE="MIT"
|
|
COPYRIGHT="2010-2014 Maxim Sokhatsky"
|
|
REVISION="2"
|
|
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"
|
|
}
|