summaryrefslogtreecommitdiff
path: root/w3m/Makefile
diff options
context:
space:
mode:
authorDavid Kühling <dvdkhlng@gmx.de>2011-01-02 15:19:00 +0100
committerDavid Kühling <dvdkhlng@gmx.de>2011-01-02 15:19:00 +0100
commit9aaeb4623d3ff5746e665bc17914eefd292b7dcd (patch)
tree370db60ffdc2ef840b7d1124d5a392f93bba3c9d /w3m/Makefile
downloadqipackages-fork-9aaeb4623d3ff5746e665bc17914eefd292b7dcd.tar.gz
New OpenWrt package for GNU Octave. Experimental/probably still broken.grafted
Work in progress. Committing it as compilation seems to take forever. Not sure whether I can finish this within a few days.
Diffstat (limited to 'w3m/Makefile')
-rw-r--r--w3m/Makefile49
1 files changed, 49 insertions, 0 deletions
diff --git a/w3m/Makefile b/w3m/Makefile
new file mode 100644
index 0000000..6cf1d9a
--- /dev/null
+++ b/w3m/Makefile
@@ -0,0 +1,49 @@
+#
+# Copyright (C) 2009 Qi Hardware Inc.
+# Author: Xiangfu Liu <xiangfu@qi-hardware.com>
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=w3m
+PKG_VERSION:=0.5.2
+
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
+PKG_SOURCE_URL:=@SF/$(PKG_NAME)
+PKG_MD5SUM:=ba06992d3207666ed1bf2dcf7c72bf58
+
+include $(INCLUDE_DIR)/package.mk
+
+define Package/w3m
+ TITLE:=w3m
+ SUBMENU:=Web
+ SECTION:=network
+ CATEGORY:=Network
+ URL:=http://w3m.sourceforge.net/
+ DEPENDS:=+libopenssl +gc +libncurses
+endef
+
+define Package/w3m/description
+ w3m is a text-based web browser
+endef
+
+define Build/Prepare
+ $(call Build/Prepare/Default)
+ $(CP) $(FILES_DIR)/functable.c $(PKG_BUILD_DIR)
+ $(CP) $(FILES_DIR)/tagtable.c $(PKG_BUILD_DIR)
+endef
+
+CONFIGURE_ARGS += --with-ssl=$(STAGING_DIR)/usr \
+ --with-gc=$(STAGING_DIR)/usr/lib
+
+CONFIGURE_VARS += ac_cv_lib_gc_GC_init=yes
+
+
+define Package/w3m/install
+ $(INSTALL_DIR) $(1)/usr/bin
+ $(INSTALL_BIN) $(PKG_BUILD_DIR)/w3m $(1)/usr/bin/
+endef
+
+$(eval $(call BuildPackage,w3m))