mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
* Fixed PROVIDES/*REQUIRES entries * Added vcs hashes to the ports needing it in the SRC_URI * Made single executable apps install to the top level $appsDir * Added patches for gcc4 versions of most apps * Added patches for apps that couldn't build on any arch ( even though they were marked as working :( ) * Other misc fixes that I've forgotten already because I'm sick of looking at this directory
44 lines
721 B
Plaintext
44 lines
721 B
Plaintext
DESCRIPTION="FtpPositive is a simple graphical FTP client."
|
|
SUMMARY="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 >= $haikuVersion
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel >= $haikuVersion
|
|
"
|
|
|
|
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
|
|
}
|