Fresh pull from upstream
[librecmc/librecmc.git] / package / libs / libreadline / Makefile
1 #
2 # Copyright (C) 2006-2014 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=readline
11 PKG_VERSION:=7.0
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@GNU/readline
16 PKG_HASH:=750d437185286f40a369e1e4f4764eda932b9459b5ec9a731628393dd3d32334
17
18 PKG_LICENSE:=GPL-3.0
19 PKG_LICENSE_FILES:=COPYING
20
21 PKG_BUILD_PARALLEL:=1
22 PKG_FIXUP:=autoreconf
23 PKG_INSTALL:=1
24
25 include $(INCLUDE_DIR)/package.mk
26
27 define Package/libreadline
28   SECTION:=libs
29   CATEGORY:=Libraries
30   TITLE:=Command lines edition library
31   URL:=http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html
32   ABI_VERSION:=$(PKG_VERSION)
33 endef
34
35 define Package/libreadline/description
36         The Readline library provides a set of functions for use by applications 
37         that allow users to edit command lines as they are typed in. Both Emacs 
38         and vi editing modes are available. The Readline library includes 
39         additional functions to maintain a list of previously-entered command 
40         lines, to recall and perhaps reedit those lines, and perform csh-like 
41         history expansion on previous commands.
42 endef
43
44 # prevent "autoreconf" from removing "aclocal.m4"
45 PKG_REMOVE_FILES:=
46
47 CONFIGURE_ARGS += \
48         --enable-shared \
49         --enable-static \
50         --with-curses \
51
52 CONFIGURE_VARS += \
53         bash_cv_wcwidth_broken=no \
54         bash_cv_func_sigsetjmp=yes \
55
56 TARGET_CPPFLAGS:=-I. -I.. $(TARGET_CPPFLAGS)
57
58 TARGET_CFLAGS += $(FPIC)
59
60 define Build/InstallDev
61         $(INSTALL_DIR) $(1)/usr/include
62         $(CP) $(PKG_INSTALL_DIR)/usr/include/readline $(1)/usr/include/
63         $(INSTALL_DIR) $(1)/usr/lib
64         $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib{history,readline}.{a,so,so.7,so.7.0} $(1)/usr/lib/
65 endef
66
67 define Package/libreadline/install
68         $(INSTALL_DIR) $(1)/usr/lib
69         $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib{history,readline}.{so,so.7,so.7.0} $(1)/usr/lib/
70 endef
71
72 $(eval $(call BuildPackage,libreadline))