mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 06:58:57 +02:00
50 lines
1.2 KiB
Bash
50 lines
1.2 KiB
Bash
SUMMARY="A lightweight XMPP client"
|
|
DESCRIPTION="Dengon is an XMPP client, allowing to use instant messaging \
|
|
networks such as Jabber, Google Talk, or Facebook Chat. It supports \
|
|
multi-use rchat, Psi bookmarks, in-band registration and other features."
|
|
HOMEPAGE="https://github.com/diger/dengon/"
|
|
COPYRIGHT="2010-2014 Maxim Sokhatsky"
|
|
LICENSE="MIT"
|
|
REVISION="3"
|
|
srcGitRev="b2df32e1292228a02752d70c64c588330bcae73c"
|
|
SOURCE_URI="https://github.com/diger/dengon/archive/$srcGitRev.tar.gz"
|
|
CHECKSUM_SHA256="b6cefb3d4f8c2adff21e8bc494525a81b6e1dbfb9600c6da7af43c9eb2252537"
|
|
SOURCE_FILENAME="dengon-$srcGitRev.tar.gz"
|
|
SOURCE_DIR="dengon-$srcGitRev"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 x86_64"
|
|
|
|
PROVIDES="
|
|
dengon = $portVersion
|
|
app:Chat = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libexpat$secondaryArchSuffix
|
|
lib:libssl$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libexpat$secondaryArchSuffix
|
|
devel:libssl$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:which
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
BUILDHOME=`finddir B_SYSTEM_DEVELOP_DIRECTORY` make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp objects.*-release/Chat $appsDir/Chat
|
|
addAppDeskbarSymlink $appsDir/Chat "Chat"
|
|
}
|