Files
haikuports/haiku-apps/bdirectconnect/bdirectconnect-0.5.0~git.recipe
waddlesplash 4f180bdb94 Utilize the new "all" ARCHITECTURES keyword in most recipes. (#6189)
x86_64 is used as a baseline: the "x86_64" entry, whatever status it has,
is transformed into "all", and then the other entries in ARCHITECTURES
either dropped or rearranged appropriately.
2021-09-15 15:40:18 -04:00

49 lines
1.1 KiB
Bash

SUMMARY="A P2P file sharing client for the Direct Connect Protocol"
DESCRIPTION="BDirectConnect (aka BeDC) is a BeOS file sharing client \
compatible with the Direct Connect protocol.
Currently only chatting works, not filesharing/downloading."
HOMEPAGE="https://github.com/HaikuArchives/BeDC"
COPYRIGHT="2002 The BeDC team"
LICENSE="BSD (3-clause)"
REVISION="2"
srcGitRev="cf2f67fba574e934a06026c66b4f4298470716c8"
SOURCE_URI="$HOMEPAGE/archive/$srcGitRev.tar.gz"
CHECKSUM_SHA256="9a4a632fa21cfd7d1b9adfca3179356d81e26308d67a0e6dcbfdd4546bb2d18c"
SOURCE_FILENAME="BeDC-$portVersion-$srcGitRev.tar.gz"
SOURCE_DIR="BeDC-$srcGitRev"
ARCHITECTURES="all"
PROVIDES="
bdirectconnect = $portVersion
app:BDirectConnect = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
makefile_engine
cmd:g++
cmd:make
"
defineDebugInfoPackage bdirectconnect \
$appsDir/BDirectConnect
BUILD()
{
make $jobArgs OBJ_DIR=objects
}
INSTALL()
{
install -d $appsDir
install -t $appsDir objects/BDirectConnect
addAppDeskbarSymlink $appsDir/BDirectConnect
}