mirror of
https://github.com/Fishwaldo/build.git
synced 2025-03-16 03:41:26 +00:00
* Change Ubuntu Eoan to Ubuntu Groovy and enable it as CSC Tested CLI and desktop image, but needs cache creation and repository before it will be possible to build without error. * Update Groovy compiler for chroot * Adjust pkg dependencies for groovy Sadly htop doesn't build
25 lines
608 B
Text
25 lines
608 B
Text
# 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 ]]; then
|
|
package_builddeps+=" python3-minimal:native"
|
|
else
|
|
package_builddeps+=" python-minimal:native"
|
|
fi
|
|
|
|
package_checkbuild()
|
|
{
|
|
[[ $release != stretch && $release != jessie ]]
|
|
}
|
|
|
|
package_checkinstall()
|
|
{
|
|
true
|
|
}
|