Files
haikuports/haiku-apps/beget/beget-1.2.3.recipe
Humdinger 2d95727c6a BeGet: secure source, changed description, user settings
BeGet itself is only alpha quality, but works somewhat.
See its issues at HaikuArchives.
2016-04-15 14:45:21 +02:00

52 lines
1.2 KiB
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.
By default, your downloaded files are saved to /boot/home/Downloads."
HOMEPAGE="http://github.com/HaikuArchives/BeGet"
COPYRIGHT="1999-2001 Atsushi Takamatsu"
LICENSE="GNU GPL v2"
REVISION="4"
SOURCE_URI="https://github.com/HaikuArchives/BeGet/archive/a170b0e6860c76599ab202a1532088cfcec447ad.tar.gz"
CHECKSUM_SHA256="518a1be0dee7cc730db948205fb013034efe1a9e7edb6708f1c8024cc6b08c53"
SOURCE_DIR="BeGet-a170b0e6860c76599ab202a1532088cfcec447ad"
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
"
USER_SETTINGS_FILES="
settings/BeGet-URL.pref
settings/BeGet.prefs
"
BUILD()
{
cmake .
make
}
INSTALL()
{
mkdir -p $appsDir
cp BeGet $appsDir
addAppDeskbarSymlink $appsDir/BeGet
}