0
0
mirror of https://github.com/libretro/Lakka-LibreELEC.git synced 2024-12-15 09:49:46 +00:00
Rudi Heitbaum 9882961756 newt: update to 0.52.24
0.52.24
- add support for python3.13
- fix compiler warnings
2023-10-27 12:23:38 +00:00

29 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.24"
PKG_SHA256="5ded7e221f85f642521c49b1826c8de19845aa372baf5d630a51774b544fbdbb"
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}
}