mirror of
https://github.com/DrHo1y/orangepi-build.git
synced 2026-03-24 09:36:43 +07:00
26 lines
668 B
Plaintext
26 lines
668 B
Plaintext
# htop
|
|
local package_name="htop"
|
|
local package_repo="https://github.com/hishamhm/htop"
|
|
local package_ref="tag:2.2.0"
|
|
|
|
local package_upstream_version="2.2.0-5"
|
|
local package_builddeps="debhelper dpkg-dev libhwloc-dev libncurses5-dev libncursesw5-dev pkg-config"
|
|
local package_install_target="htop"
|
|
local package_component="${release}-utils"
|
|
|
|
if [[ $release =~ focal|bullseye|bookworm ]]; then
|
|
package_builddeps+=" python3-minimal:native"
|
|
else
|
|
package_builddeps+=" python-minimal:native"
|
|
fi
|
|
|
|
package_checkbuild()
|
|
{
|
|
[[ $release != xenial && $release != stretch && $release != jessie && $release != bullseye && $release != bookworm ]]
|
|
}
|
|
|
|
package_checkinstall()
|
|
{
|
|
:
|
|
}
|