mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2026-01-16 08:42:16 -05:00
AUTORELEASE has been deprecated from a long time. Drop it and hardcode the release following the current one present in the downloads repository. Link: https://github.com/openwrt/openwrt/pull/20586 Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
33 lines
792 B
Makefile
33 lines
792 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ucode-mod-uline
|
|
PKG_RELEASE:=8
|
|
PKG_LICENSE:=GPL-2.0-or-later
|
|
PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
CMAKE_INSTALL := 1
|
|
|
|
define Package/ucode-mod-uline
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=ucode module for terminal line editing
|
|
DEPENDS:=+libucode +libubox
|
|
endef
|
|
|
|
CMAKE_OPTIONS += -DUSE_SYSTEM_WCHAR=ON
|
|
|
|
define Package/ucode-mod-uline/description
|
|
This module provides similar functionality as libreadline for ucode, without
|
|
depending on other libraries like ncurses.
|
|
endef
|
|
|
|
define Package/ucode-mod-uline/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/ucode
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ucode/uline.so $(1)/usr/lib/ucode/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,ucode-mod-uline))
|