Date:2010-07-14 08:14:40 (13 years 8 months ago)
Author:bas
Commit:bc9afd7b36bfe816519e2820d0c879ce29160177
Message:ne, the nice editor. An editor with a small footprint, featuring extended regular expression search and replace a la emacs and vi and editing of binary files.

Files: ne/Makefile (1 diff)

Change Details

ne/Makefile
1#
2# kyak@freenode/#qi-hardware
3#
4# This is free software, licensed under the GNU General Public License v2.
5#
6
7include $(TOPDIR)/rules.mk
8
9PKG_NAME:=ne
10PKG_VERSION:=2.1
11PKG_RELEASE:=1
12
13PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
14PKG_SOURCE_URL:=http://ne.dsi.unimi.it/
15PKG_MD5SUM:=9f76652f6349721cfe0e8dc2aec9c767
16
17include $(INCLUDE_DIR)/package.mk
18
19define Package/ne
20  SECTION:=utils
21  CATEGORY:=Utilities
22  TITLE:=ne, the nice editor
23  URL:=http://ne.dsi.unimi.it
24  SUBMENU:=Editors
25endef
26
27define Package/ne/description
28  ne is a free (GPL'd) text editor based on the POSIX standard.
29  ne is easy to use for the beginner, but powerful and fully
30  configurable for the wizard, and most sparing in its resource usage.
31endef
32
33MAKE_FLAGS += NE_TERMCAP=1 PREFIX=/usr OPTS=-ansi NE_DEBUG=0
34
35define Package/ne/install
36    $(INSTALL_DIR) \
37        $(1)/usr/bin \
38        $(1)/usr/share/ne \
39        $(1)/usr/share/ne/syntax \
40        $(1)/usr/share/ne/doc
41
42    $(INSTALL_BIN) \
43        $(PKG_BUILD_DIR)/src/ne \
44        $(1)/usr/bin/ne
45
46    $(INSTALL_DATA) \
47        $(PKG_BUILD_DIR)/syntax/*.jsf \
48        $(1)/usr/share/ne/syntax/
49
50    $(INSTALL_DATA) \
51        $(PKG_BUILD_DIR)/doc/{default.*,ne.txt} \
52        $(1)/usr/share/ne/doc/
53endef
54
55$(eval $(call BuildPackage,ne))

Archive Download the corresponding diff file



interactive