BeRDP: use safe source

This commit is contained in:
Sergei Reznikov
2018-05-19 11:11:05 +03:00
parent 031544ab02
commit 51f5c91e30

View File

@@ -1,16 +1,17 @@
SUMMARY="A native GUI for RDesktop"
DESCRIPTION="
BeRDP is a project dedicated to bringing the RDP protocol to the BeOS platform \
utilizing the rdesktop project. RDP is a protocol designed by Microsoft to \
remotely administer / run a session on Windows 2000/2003 Servers / Windows XP \
Professional workstations.
"
DESCRIPTION="BeRDP is a project dedicated to bringing the RDP protocol to \
the BeOS platform utilizing the rdesktop project. RDP is a protocol designed \
by Microsoft to remotely administer / run a session on Windows 2000/2003 \
Servers / Windows XP Professional workstations."
HOMEPAGE="https://github.com/HaikuArchives/BeRDP/"
SOURCE_URI="git+https://github.com/HaikuArchives/BeRDP.git#8d73363b567361a5f14bf36173bf68f01260013a"
COMMIT="f5dc795ec3816febc1b3c524dcf3884107547a59"
SOURCE_URI="https://github.com/HaikuArchives/BeRDP/archive/$COMMIT.tar.gz"
SOURCE_DIR="BeRDP-$COMMIT"
CHECKSUM_SHA256="893e8b3f89c636285d59f63acf7c7586479e7bf6f38064dc48bfb761e808b548"
COPYRIGHT="2003-2004 Sikos"
LICENSE="BSD (4-clause)"
REVISION="1"
ARCHITECTURES="x86_gcc2 ?x86 ?x86_64"
ARCHITECTURES="x86_gcc2 x86_64"
PROVIDES="
berdp = $portVersion
@@ -36,14 +37,12 @@ REQUIRES="
BUILD()
{
cd Source
make
make $jobArgs OBJ_DIR=objects -C Source
}
INSTALL()
{
mkdir -p $appsDir/BeRDP
objDir=Source/objects.$(echo $buildArchitecture|sed -r s/_/-/g)-release
cp $objDir/BeRDP $appsDir/BeRDP
addAppDeskbarSymlink $appsDir/BeRDP/BeRDP
mkdir -p $appsDir
cp Source/objects/BeRDP $appsDir
addAppDeskbarSymlink $appsDir/BeRDP
}