Merged in diversys/haikuports (pull request #180)

Dockbert: fix missing $secondaryArchSuffix
This commit is contained in:
Adrien Destugues
2014-06-08 19:48:33 +02:00
2 changed files with 6 additions and 5 deletions

View File

@@ -9,9 +9,10 @@ SRC_URI="git+https://github.com/HaikuArchives/DockBert#057c54674d"
COPYRIGHT="2005 yellowTAB GmbH"
LICENSE="BSD (3-clause)"
REVISION="2"
REVISION="3"
ARCHITECTURES="x86_gcc2 x86 ?x86_64"
SECONDARY_ARCHITECTURES="x86_gcc2 x86"
PROVIDES="
dockbert = $portVersion
@@ -23,12 +24,12 @@ REQUIRES="
"
BUILD_REQUIRES="
haiku_devel >= $haikuVersion
haiku${secondaryArchSuffix}_devel >= $haikuVersion
"
BUILD_PREREQUIRES="
makefile_engine
cmd:gcc
cmd:gcc$secondaryArchSuffix
cmd:make
cmd:mkdepend
"

View File

@@ -29,13 +29,13 @@ BUILD_PREREQUIRES="
BUILD()
{
make $jobArgs
make $jobArgs OBJ_DIR=objects
}
INSTALL()
{
mkdir -p $appsDir
cp objects*/NetPulse $appsDir/NetPulse
cp objects/NetPulse $appsDir/NetPulse
# Add a symlink to the Desktop applets directory in Deskbar
desktopAppletsDir="$dataDir/deskbar/menu/Desktop applets"