26 lines
631 B
Plaintext
26 lines
631 B
Plaintext
# hostapd
|
|
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 || $release == groovy || $release == bullseye ]]; then
|
|
package_builddeps+=" python3-minimal:native"
|
|
else
|
|
package_builddeps+=" python-minimal:native"
|
|
fi
|
|
|
|
package_checkbuild()
|
|
{
|
|
[[ $release != stretch && $release != jessie ]]
|
|
}
|
|
|
|
package_checkinstall()
|
|
{
|
|
true
|
|
}
|