Files
haikuports/haiku-apps/chat/chat-20100903.recipe
Humdinger 4e961ebfa3 Increase revision of Chat recipe
Package had to be rebuild due to ssl dependency of old package.
2016-08-21 17:56:24 +02:00

52 lines
1.3 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="3"
commit="37b34459b19b7f789073b348bab93c8f0df05f30"
SOURCE_URI="https://github.com/devaspot/chat/archive/$commit.tar.gz"
SOURCE_FILENAME="chat-$commit.tar.gz"
SOURCE_DIR="chat-$commit"
CHECKSUM_SHA256="26721cbd6fac473ac20afd7774f7fd7ca8a7f2a849ca334d2cfdad48ce539c46"
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"
}