[PATCH] lm-sensors package upgrade/update
[openwrt/svn-archive/archive.git] / utils / joe / Makefile
1 #
2 # Copyright (C) 2007 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:=joe
11 PKG_VERSION:=3.7
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/joe-editor
16 PKG_MD5SUM:=66de1b073e869ba12abbfcde3885c577
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/joe
21 SECTION:=utils
22 CATEGORY:=Utilities
23 DEPENDS:=+libncurses
24 TITLE:=JOE - Joes own editor
25 URL:=http://sourceforge.net/projects/joe-editor/
26 SUBMENU:=Editors
27 endef
28
29 define Package/joe/description
30 Joe is world-famous Wordstar like text editor.
31 endef
32
33 define Package/joe/install
34 $(INSTALL_DIR) $(1)/usr/bin
35 $(INSTALL_BIN) $(PKG_BUILD_DIR)/joe $(1)/usr/bin/
36 endef
37
38 $(eval $(call BuildPackage,joe))