Files
haikuports/haiku-apps/beget/beget-1.2.3.recipe
2016-02-17 14:39:36 -05:00

47 lines
945 B
Bash

SUMMARY="A GUI frontend to the command-line downloader wget"
DESCRIPTION="
BeGet is a easy-to-use download manager for the popular command line tool \
wget. BeGet can also accept more than one link at the same time. BeGet saves \
your downloaded files to /home/Downloads
"
HOMEPAGE="http://github.com/HaikuArchives/BeGet"
COPYRIGHT="1999-2001 Atsushi Takamatsu"
LICENSE="GNU GPL v2"
REVISION="3"
SOURCE_URI="git://github.com/HaikuArchives/BeGet#fe8db7ccb6"
ARCHITECTURES="x86_gcc2 !x86 !x86_64"
SECONDARY_ARCHITECTURES="x86_gcc2 !x86"
PROVIDES="
beget = $portVersion
app:BeGet = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
cmd:wget$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
"
BUILD_PREREQUIRES="
cmd:cmake
cmd:make
cmd:gcc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
"
BUILD()
{
cmake .
make
}
INSTALL()
{
mkdir -p $appsDir
cp BeGet $appsDir
addAppDeskbarSymlink $appsDir/BeGet
}