mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-02 21:18:51 +02:00
and: * befar Remove unneeded $secondaryArchSuffix Use g++ * mirrormagic Remove unneeded $secondaryArchSuffix * slime_volley Replaced slime_volley with slimevolley in PROVIDES Add lib:libsdl_net in REQUIRES * super_transball Remove unneeded $secondaryArchSuffix Replaced super_transball with stransball2 in PROVIDES
45 lines
976 B
Bash
45 lines
976 B
Bash
SUMMARY="A replicant showing the network status"
|
|
DESCRIPTION="NetPulse is status replicant that gives an indication of data \
|
|
being sent or received over the network."
|
|
HOMEPAGE="https://github.com/HaikuArchives/NetPulse"
|
|
COPYRIGHT="2001 Carlos Hasan"
|
|
LICENSE="MIT"
|
|
REVISION="5"
|
|
SOURCE_URI="git://github.com/HaikuArchives/NetPulse#102c1cc"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86 ?x86_64"
|
|
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
|
|
|
|
PROVIDES="
|
|
netpulse = $portVersion
|
|
app:NetPulse = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make $jobArgs OBJ_DIR=objects
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp objects/NetPulse $appsDir/NetPulse
|
|
|
|
# Add a symlink to the Desktop applets directory in Deskbar
|
|
desktopAppletsDir="$dataDir/deskbar/menu/Desktop applets"
|
|
mkdir -p "$desktopAppletsDir"
|
|
ln -s $appsDir/NetPulse "$desktopAppletsDir"
|
|
}
|