Files
haikuports/haiku-apps/ftppositive/ftppositive-1.0.recipe
Oliver Tappe 52b344b97b Drop references to $haikuVersion.
* Referring the current haiku version explicitly is not needed, since
  the RequiresUpdater takes care of setting the version of Haiku used
  for building a package.
2014-12-14 23:08:52 +01:00

46 lines
689 B
Bash

SUMMARY="A simple graphical FTP client"
DESCRIPTION="
FtpPositive is a simple graphical FTP client.
"
HOMEPAGE="https://github.com/HaikuArchives/FtpPositive"
SRC_URI="git+https://github.com/HaikuArchives/FtpPositive#442f47a22f"
COPYRIGHT="2007 momoziro"
LICENSE="FtpPositive"
REVISION="2"
ARCHITECTURES="x86_gcc2 x86 ?x86_64"
PROVIDES="
ftppositive = $portVersion
app:FtpPositive = $portVersion
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
cmd:gcc
cmd:jam"
BUILD()
{
cd src
jam
#too lazy to fix the jamfile
mimeset -f FtpPositive
}
INSTALL()
{
mkdir -p $appsDir
cp -a src/FtpPositive $appsDir
addAppDeskbarSymlink $appsDir/FtpPositive
}