mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-25 11:56:18 +00:00
21 lines
674 B
Makefile
21 lines
674 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="htop"
|
|
PKG_VERSION="3.2.2"
|
|
PKG_SHA256="3829c742a835a0426db41bb039d1b976420c21ec65e93b35cd9bfd2d57f44ac8"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://hisham.hm/htop"
|
|
PKG_URL="https://github.com/htop-dev/htop/archive/${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain ncurses"
|
|
PKG_LONGDESC="An interactive process viewer for Unix."
|
|
PKG_TOOLCHAIN="autotools"
|
|
PKG_BUILD_FLAGS="-sysroot"
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="--disable-unicode \
|
|
HTOP_NCURSES_CONFIG_SCRIPT=ncurses-config"
|
|
|
|
pre_configure_target() {
|
|
export LDFLAGS="${LDFLAGS} -pthread"
|
|
}
|