0
0
Fork 0
haikuports/haiku-apps/taskmanager/taskmanager-0.1.7.recipe

57 lines
1.6 KiB
Bash
Raw Permalink Normal View History

2014-10-28 10:32:22 +00:00
SUMMARY="Cool NT-like system and process monitor"
DESCRIPTION="TaskManager displays all relevant system information in three tabs in its \
main window. These are:\
* The Usage tab: Displays general system information like memory and CPU usage.
* The Process tab: Displays all runnig processes (teams) in your system, their\
memory and CPU usage, team id etc. You can quit teams, kill them and change \
their priority.
* The Performance tab: This is a configurable graphical display for various \
system information including your motherboard temperature (X86 version only, \
2016-02-26 15:33:51 +00:00
only available if you have a LM78 motherboard sensor installed)."
2014-10-28 10:32:22 +00:00
HOMEPAGE="https://github.com/HaikuArchives/TaskManager"
2015-02-18 21:10:17 +00:00
COPYRIGHT="2000 Thomas Krammer"
2014-10-28 10:32:22 +00:00
LICENSE="Apache v2"
2020-02-09 20:46:35 +00:00
REVISION="4"
srcGitRev="4fd44eaa83d99e9314fe8f3ae10f1e9b99ea3291"
2018-08-07 09:03:27 +00:00
SOURCE_URI="https://github.com/HaikuArchives/TaskManager/archive/$srcGitRev.tar.gz"
2020-02-09 20:46:35 +00:00
CHECKSUM_SHA256="e1b4f7cf92b9e02a71d3c8782112a3c8e3f8aba3bc19aa34be7bec0e273cc5e2"
2018-08-07 09:03:27 +00:00
SOURCE_DIR="TaskManager-$srcGitRev"
2014-10-28 10:32:22 +00:00
ARCHITECTURES="all"
2014-10-28 10:32:22 +00:00
PROVIDES="
taskmanager = $portVersion
2014-10-28 21:25:03 +00:00
app:TaskManager = $portVersion
2014-10-28 10:32:22 +00:00
"
2015-02-18 21:10:17 +00:00
REQUIRES="
haiku
"
2014-10-28 10:32:22 +00:00
2015-02-18 21:10:17 +00:00
BUILD_REQUIRES="
haiku_devel
"
2014-10-28 10:32:22 +00:00
BUILD_PREREQUIRES="
makefile_engine
cmd:gcc$secondaryArchSuffix
cmd:make
"
BUILD()
{
cd source
make $jobArgs OBJ_DIR=objects
2015-02-18 21:10:17 +00:00
2014-10-28 10:32:22 +00:00
cd add_ons/default
2015-02-18 21:10:17 +00:00
make $jobArgs OBJ_DIR=objects
2014-10-28 10:32:22 +00:00
}
INSTALL()
{
mkdir -p $appsDir/TaskManager/add_ons
cp source/objects/TaskManager $appsDir/TaskManager/TaskManager
cp source/add_ons/default/objects/taskmanager_default.so $appsDir/TaskManager/add_ons
cp -r doc $appsDir/TaskManager
2014-10-28 10:32:22 +00:00
addAppDeskbarSymlink $appsDir/TaskManager/TaskManager
}