add mutella (thanks to olli)
[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 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=joe
12 PKG_VERSION:=3.5
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=@SF/joe-editor
17 PKG_MD5SUM:=9bdffecce7ef910feaa06452d48843de
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/joe
22 SECTION:=utils
23 CATEGORY:=Utilities
24 DEPENDS:=+libncurses
25 TITLE:=JOE - Joes own editor
26 DESCRIPTION:=Joe is world-famous Wordstar like text editor.
27 URL:=http://sourceforge.net/projects/joe-editor/
28 endef
29
30 define Package/joe/install
31 $(INSTALL_DIR) $(1)/usr/bin
32 $(INSTALL_BIN) $(PKG_BUILD_DIR)/joe $(1)/usr/bin/
33 endef
34
35 $(eval $(call BuildPackage,joe))