Files
haikuports/haiku-apps/caya/caya-2013.10.12.recipe
Humdinger a38db25c39 Changes in SUMMARY, DESCRIPTION and whitespace.
Removed the full-stop and repeating package name in SUMMARY.
Removed hard line breaks, broke up some very long paragraphs and
use bullet lists where possible.
All done by browsing through HaikuDepot. There may be (many) more left
in the whole haikuports repo...

Included 10 extended desriptions done by soyoye14 for GCI 2014
(https://www.google-melange.com/gci/task/view/google/gci2014/5240373098053632)

Removed/insert whitespace where it seems to be the custom in recipes.
Sometimes rearranged elements of a recipe (moving license and copyright
up, for example).
2015-01-12 19:23:51 +01:00

75 lines
1.8 KiB
Plaintext

SUMMARY="Caya is a multiprotocol IM client"
DESCRIPTION="
Caya is a multiprotocol chat client for Haiku. It supports msn, aim, jabber, \
google talk, and facebook.
"
HOMEPAGE="http://www.versut.com/caya/"
REVISION="1"
ARCHITECTURES="x86 x86_gcc2"
SRC_URI="git+https://github.com/Barrett17/Caya.git#0746cacb94f78b656226d8679baa3a4d968a03e6"
LICENSE="MIT"
COPYRIGHT="
2009-2011 Andrea Anzani
2009-2011 Pierluigi Fiorini
2010-2011 Oliver Ruiz Dorantes
2011-2012 Casalinuovo Dario
"
PATCHES="caya-$portVersion.patchset"
PROVIDES="
caya = $portVersion
app:Caya
"
REQUIRES="
haiku
lib:libz
lib:libexpat
lib:libssl
"
BUILD_REQUIRES="
devel:libexpat
devel:libssl
devel:libz
"
BUILD_PREREQUIRES="
haiku_devel
cmd:gcc
cmd:ld
cmd:jam
cmd:which
cmd:tr
"
BUILD()
{
mkdir -p $sourceDir/generated/objects-haiku-x86-gcc2-release/application
echo $portVersion | tr -d . > $sourceDir/generated/objects-haiku-x86-gcc2-release/application/svn_revision
./configure
jam $jobArgs -sDEBUG=0
}
INSTALL()
{
mkdir -p $appsDir/Caya
mkdir -p $appsDir/Caya/smileys
mkdir -p $appsDir/Caya/protocols
mkdir -p $includeDir/caya/
cp generated/distro-haiku-*-release/Caya $appsDir/Caya
cp generated/distro-haiku-*-release/aim $appsDir/Caya/protocols
cp generated/distro-haiku-*-release/msn $appsDir/Caya/protocols
cp generated/distro-haiku-*-release/gtalk $appsDir/Caya/protocols
cp generated/distro-haiku-*-release/facebook $appsDir/Caya/protocols
cp generated/distro-haiku-*-release/jabber $appsDir/Caya/protocols
cp generated/distro-haiku-*-release/yahoo $appsDir/Caya/protocols
cp smileys/*.gif smileys/settings.xml $appsDir/Caya/smileys
cp application/Caya.h $includeDir/caya/
cp application/CayaProtocol.h $includeDir/caya/
cp application/CayaConstants.h $includeDir/caya/
cp application/CayaProtocolMessages.h $includeDir/caya/
addAppDeskbarSymlink $appsDir/Caya/Caya
}