d0b3033883
git-svn-id: svn://svn.openwrt.org/openwrt/packages@13157 3c298f89-4303-0410-b956-a3cf2f4a3e73
57 lines
1.3 KiB
Makefile
57 lines
1.3 KiB
Makefile
#
|
|
# Copyright (C) 2008 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
# $Id: $
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=mg
|
|
PKG_VERSION:=20070529
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=http://www.xs4all.nl/~hanb/software/mg
|
|
PKG_MD5SUM:=e1eaef5a61143c12a66e23deaa369e76
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/mg
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
DEPENDS:=+libncurses
|
|
TITLE:=microscopic GNU Emacs-style editor
|
|
URL:=http://www.xs4all.nl/~hanb/software/mg/
|
|
endef
|
|
|
|
define Package/mg/description
|
|
This program is intended to be a small, fast, and portable
|
|
editor for people who can't (or don't want to) run real
|
|
Emacs for one reason or another. It is compatible with GNU
|
|
because there shouldn't be any reason to learn more than
|
|
one Emacs flavor.
|
|
endef
|
|
|
|
define Build/Configure
|
|
(cd $(PKG_BUILD_DIR); \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
./configure \
|
|
);
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
LDFLAGS="$(TARGET_LDFLAGS) -lncurses" \
|
|
CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
|
|
CC=$(TARGET_CC)
|
|
endef
|
|
|
|
define Package/mg/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(CP) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,mg))
|