mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
* 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.
46 lines
689 B
Bash
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
|
|
}
|