Files
haikuports/sys-process/htop_rivoreo/htop_rivoreo-2.3.1.recipe
OscarL 1f8cb71beb htop: rename recipe to htop_rivoreo. (#9298)
This is in order to clarify that this is not the "official" htop,
but a fork based on an older version, and that has since diverged.

- Enable build on 64 bits.
- Drop "-x86" suffix on 32 bits binary.
- Make it CONFLICT with "htop", effectively replacing it at install,
  and just in case we get a recipe for the "official" htop.
  (might just rename the provided `cmd:htop` instead in that case).
2023-08-29 15:09:31 -04:00

65 lines
1.6 KiB
Bash

SUMMARY="An interactive process viewer for Unix (Rivoreo's htop fork)"
DESCRIPTION="This is Rivoreo's fork of htop, an interactive process viewer for Unix systems. It \
is a terminal UI application uses ncurses.
This fork is based on https://github.com/hishamhm/htop/ (now archived), and has since diverged \
from the \"official\" htop (https://github.com/htop-dev/htop/).
Among new features, and many fixes related to *BSD and other OSes, it includes Haiku support!"
HOMEPAGE="https://sourceforge.net/projects/htop.rivoreo.p/"
COPYRIGHT="
2004-2018 Hisham Muhammad
2015-2023 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="6853967ab4f95e3f6d9c5324287c220c789eb95fed3cd6e7a18bd40542bc5bc0"
SOURCE_DIR=""
ARCHITECTURES="all !x86_gcc2"
SECONDARY_ARCHITECTURES="x86"
commandBinDir=$binDir
commandSuffix=$secondaryArchSuffix
if [ "$targetArchitecture" = x86_gcc2 ]; then
commandSuffix=
commandBinDir=$prefix/bin
fi
PROVIDES="
htop_rivoreo$secondaryArchSuffix = $portVersion
cmd:htop$commandSuffix = $portVersion
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libncursesw$secondaryArchSuffix
"
CONFLICTS="
htop$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libncursesw$secondaryArchSuffix
"
BUILD_PREREQUIRES="
cmd:aclocal
cmd:autoreconf
cmd:gcc$secondaryArchSuffix
cmd:make
"
BUILD()
{
autogen.sh
runConfigure --omit-dirs binDir ./configure --bindir="$commandBinDir"
make $jobArgs
}
INSTALL()
{
make install
}