mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
50 lines
1.2 KiB
Bash
50 lines
1.2 KiB
Bash
SUMMARY="XMPP client for Haiku"
|
|
DESCRIPTION="A simple but powerful client for chatting on XMPP networks.
|
|
Features user-to-user chat, group chat, transports, etc, in a clean and easy \
|
|
to use user interface."
|
|
HOMEPAGE="https://github.com/HaikuArchives/Jabber4Haiku"
|
|
COPYRIGHT="19??-2009 John Blanco, Frank Paul Silye, Andrea Anzani, Daniel Fischer, zuMi"
|
|
LICENSE="MIT"
|
|
REVISION="5"
|
|
commit="160b682b6c00640547c278e050104f11732b2c5f"
|
|
SOURCE_URI="$HOMEPAGE/archive/$commit.tar.gz"
|
|
SOURCE_FILENAME="$portName-$commit.tar.gz"
|
|
SOURCE_DIR="Jabber4Haiku-$commit"
|
|
CHECKSUM_SHA256="8199235c33eb8ab14be31cf8777682a23808040883bc57421d0aad9fe0ccb5d9"
|
|
|
|
ARCHITECTURES="x86_gcc2 ?x86 x86_64"
|
|
|
|
PROVIDES="
|
|
jabber4haiku$secondaryArchSuffix = $portVersion
|
|
app:jabber4haiku
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libexpat
|
|
lib:libssl
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libexpat
|
|
devel:libssl
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:make
|
|
cmd:gcc$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make $jobArgs BUILDHOME=/system/develop
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install BUILDHOME=/system/develop INSTALL_DIR=$appsDir/Jabber4Haiku
|
|
|
|
cp -r resources $appsDir/Jabber4Haiku/resources
|
|
addAppDeskbarSymlink $appsDir/Jabber4Haiku/Jabber Jabber4Haiku
|
|
}
|