1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-06-26 04:02:20 +03:00

There is now a libncurses-dev package

This commit is contained in:
Neil Stockbridge 2011-05-20 11:53:35 +12:00
parent 1460a79827
commit b9ee6f4087

48
libncurses-dev/Makefile Normal file
View File

@ -0,0 +1,48 @@
# Copyright (C) 2008 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=libncurses-dev
PKG_VERSION:=5.7
PKG_RELEASE:=1
NCURSES_BUILD_DIR:=$(BUILD_DIR)/ncurses-$(PKG_VERSION)
include $(INCLUDE_DIR)/package.mk
define Package/libncurses-dev
TITLE:=Files required to develop with ncurses
SECTION:=development
CATEGORY:=Development
URL:=http://www.gnu.org/software/ncurses/ncurses.html
DEPENDS:=+libncurses
endef
define Package/libncurses-dev/description
Header files needed to compile ncurses programs along with man pages for the API
endef
# There is nothing to compile:
define Build/Compile
endef
define Package/libncurses-dev/install
$(INSTALL_DIR) \
$(1)/usr/include \
$(1)/usr/share/man/man3
$(INSTALL_DATA) \
$(NCURSES_BUILD_DIR)/include/*.h \
$(1)/usr/include
$(INSTALL_DATA) \
$(NCURSES_BUILD_DIR)/man/*.3x \
$(1)/usr/share/man/man3
rename "s/\\.3x/.3/" $(1)/usr/share/man/man3/*.3x
endef
$(eval $(call BuildPackage,libncurses-dev))