28 lines
846 B
Makefile
28 lines
846 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="newt"
|
|
PKG_VERSION="0.52.21"
|
|
PKG_SHA256="265eb46b55d7eaeb887fca7a1d51fe115658882dfe148164b6c49fccac5abb31"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://pagure.io/newt"
|
|
PKG_URL="https://releases.pagure.org/newt/${PKG_NAME}-${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain slang popt"
|
|
PKG_LONGDESC="Newt is a programming library for color text mode, widget based user interfaces."
|
|
PKG_TOOLCHAIN="autotools"
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="--disable-nls \
|
|
--without-python \
|
|
--without-tcl"
|
|
|
|
pre_configure_target() {
|
|
# newt fails to build in subdirs
|
|
cd ${PKG_BUILD}
|
|
rm -rf .${TARGET_NAME}
|
|
}
|
|
|
|
pre_configure_host() {
|
|
# newt fails to build in subdirs
|
|
cd ${PKG_BUILD}
|
|
rm -rf .${HOST_NAME}
|
|
}
|