mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-05 06:13:44 +02:00
80 lines
1.8 KiB
Makefile
80 lines
1.8 KiB
Makefile
#
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ncurses
|
|
PKG_VERSION:=5.7
|
|
PKG_RELEASE:=3
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=@GNU/ncurses
|
|
PKG_MD5SUM:=cce05daf61a64501ef6cd8da1f727ec6
|
|
|
|
PKG_INSTALL:=1
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/libncursesw
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE:=Terminal handling library (Unicode)
|
|
URL:=http://www.gnu.org/software/ncurses/
|
|
DEPENDS:=libncurses
|
|
VARIANT:=libncursesw
|
|
endef
|
|
|
|
TARGET_CFLAGS += $(FPIC)
|
|
|
|
CONFIGURE_ARGS += \
|
|
--enable-echo \
|
|
--enable-const \
|
|
--enable-overwrite \
|
|
--disable-rpath \
|
|
--without-ada \
|
|
--without-cxx \
|
|
--without-cxx-binding \
|
|
--without-debug \
|
|
--without-profile \
|
|
--without-progs \
|
|
--with-normal \
|
|
--with-shared \
|
|
--with-terminfo-dirs=/usr/share/terminfo \
|
|
--with-default-terminfo-dir=/usr/share/terminfo \
|
|
--enable-widec \
|
|
--with-build-cppflags=-D_GNU_SOURCE
|
|
|
|
MAKE_FLAGS += \
|
|
BUILD_CC="$(HOSTCC)" \
|
|
HOSTCC="$(HOSTCC)" \
|
|
HOSTCCFLAGS="" \
|
|
libs
|
|
|
|
define Build/Install/Default
|
|
$(MAKE_VARS) \
|
|
$(MAKE) -C $(PKG_BUILD_DIR)/$(MAKE_PATH) \
|
|
$(MAKE_INSTALL_FLAGS) \
|
|
$(1) install.libs install.data;
|
|
endef
|
|
|
|
define Package/libncursesw/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib{ncurses,panel,menu,form}w.so* $(1)/usr/lib/
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/include/ncursesw/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/*.h $(1)/usr/include/ncursesw/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib{ncurses,panel,menu,form}w.{a,so*} $(1)/usr/lib/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libncursesw))
|