mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-23 04:00:05 +02:00
49 lines
1.1 KiB
Bash
49 lines
1.1 KiB
Bash
SUMMARY="An interactive process viewer for Unix"
|
|
DESCRIPTION="This is htop, an interactive process viewer for Unix systems. It \
|
|
is a terminal UI application uses ncurses."
|
|
HOMEPAGE="https://sourceforge.net/projects/htop.rivoreo.p/"
|
|
COPYRIGHT="
|
|
2004-2018 Hisham Muhammad
|
|
2015-2022 Rivoreo"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
SOURCE_URI="https://sourceforge.net/projects/htop.rivoreo.p/files/htop-$portVersion-src.tar.bz2/download"
|
|
SOURCE_FILENAME="htop-$portVersion-src.tar.bz2"
|
|
CHECKSUM_SHA256="14c3eba4ea509332f1e7029e6ea650e4de937ce155eceec6abe12f8bbc51c3a8"
|
|
SOURCE_DIR=""
|
|
|
|
ARCHITECTURES="?all !x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
htop$secondaryArchSuffix = $portVersion
|
|
cmd:htop$secondaryArchSuffix = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libncursesw$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libncursesw$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:aclocal
|
|
cmd:autoreconf
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
autogen.sh
|
|
runConfigure ./configure
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|