diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-09-05 17:25:06 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-09-05 17:25:06 +0000 |
commit | cf8d702e85f0787978f1647ef83852981d79f1b1 (patch) | |
tree | 7f2ff53136467d9cb0aa7a4f16d62e5a5ca4a56b /openwrt/package/ncurses/Makefile | |
parent | c6da3eefd04120a896cc8ab280d4cce0e799f88e (diff) | |
download | mtk-20170518-cf8d702e85f0787978f1647ef83852981d79f1b1.zip mtk-20170518-cf8d702e85f0787978f1647ef83852981d79f1b1.tar.gz mtk-20170518-cf8d702e85f0787978f1647ef83852981d79f1b1.tar.bz2 |
add /usr/share/terminfo/r/rxvt to ipkg (suggested by Oliver Ertl), bump release number
SVN-Revision: 1856
Diffstat (limited to 'openwrt/package/ncurses/Makefile')
-rw-r--r-- | openwrt/package/ncurses/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openwrt/package/ncurses/Makefile b/openwrt/package/ncurses/Makefile index 1b9e356..29dedc2 100644 --- a/openwrt/package/ncurses/Makefile +++ b/openwrt/package/ncurses/Makefile @@ -4,7 +4,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ncurses PKG_VERSION:=5.2 -PKG_RELEASE:=7 +PKG_RELEASE:=8 PKG_MD5SUM:=464d6a49010cf2a6eb9ce59a264d4d47 PKG_SOURCE_URL:=\ @@ -124,7 +124,7 @@ $(IPKG_LIBNCURSES): install -d -m0755 $(IDIR_LIBNCURSES)/usr/lib cp -fpR $(PKG_INSTALL_DIR)/usr/lib/lib{ncurses,panel,menu}*.so.* $(IDIR_LIBNCURSES)/usr/lib/ install -d -m0755 $(IDIR_LIBNCURSES)/usr/share/terminfo - for f in a/ansi d/dumb l/linux s/screen v/vt100 v/vt102 x/xterm x/xterm-color; do \ + for f in a/ansi d/dumb l/linux r/rxvt s/screen v/vt100 v/vt102 x/xterm x/xterm-color; do \ install -d -m0755 $(IDIR_LIBNCURSES)/usr/share/terminfo/`dirname $${f}`; \ cp -fpR $(PKG_INSTALL_DIR)/usr/share/terminfo/$${f} \ $(IDIR_LIBNCURSES)/usr/share/terminfo/$${f}; \ |