mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-22 07:19:21 +02:00
add w3m and libgc, need FIX libgc compile error
This commit is contained in:
parent
0d4076f34f
commit
31dc3aa01a
65
libgc/Makefile
Normal file
65
libgc/Makefile
Normal file
@ -0,0 +1,65 @@
|
||||
#
|
||||
# Copyright (C) 2008 OpenWrt.org
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=gc
|
||||
PKG_VERSION:=7.1
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/
|
||||
|
||||
PKG_INSTALL:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/gc
|
||||
TITLE:=gc
|
||||
SECTION:=libs
|
||||
CATEGORY:=Libraries
|
||||
URL:=http://www.hpl.hp.com/personal/Hans_Boehm/gc/
|
||||
endef
|
||||
|
||||
define Package/gc/description
|
||||
garbage collector can be used as a garbage collecting replacement for C malloc or C++ new
|
||||
endef
|
||||
|
||||
TARGET_CFLAGS+="-I./include"
|
||||
|
||||
define Build/Configure
|
||||
$(call Build/Configure/Default, \
|
||||
--disable-gcj-support \
|
||||
--disable-java-finalization \
|
||||
--disable-atomic-uncollectible \
|
||||
)
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
$(INSTALL_DIR) \
|
||||
$(1)/usr/include \
|
||||
$(1)/usr/lib \
|
||||
$(1)/usr/lib/pkgconfig
|
||||
$(CP) \
|
||||
$(PKG_INSTALL_DIR)/usr/lib/* \
|
||||
$(1)/usr/lib/
|
||||
$(CP) \
|
||||
$(PKG_INSTALL_DIR)/usr/include/* \
|
||||
$(1)/usr/include/
|
||||
$(CP) \
|
||||
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig \
|
||||
$(1)/usr/lib/
|
||||
endef
|
||||
|
||||
define Package/gc/install
|
||||
$(INSTALL_DIR) \
|
||||
$(1)/usr/lib \
|
||||
$(CP) \
|
||||
$(PKG_INSTALL_DIR)/usr/lib/lib{cord,gc}.la \
|
||||
$(1)/usr/lib/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,gc))
|
38
w3m/Makefile
Normal file
38
w3m/Makefile
Normal file
@ -0,0 +1,38 @@
|
||||
#
|
||||
# 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:=http://nchc.dl.sourceforge.net/project/w3m/w3m/w3m-0.5.2/
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
|
||||
PKG_INSTALL:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/w3m
|
||||
TITLE:=w3m
|
||||
SECTION:=network
|
||||
CATEGORY:=Network
|
||||
URL:=http://w3m.sourceforge.net/
|
||||
endef
|
||||
|
||||
define Package/w3m/description
|
||||
w3m is a text-based web browser
|
||||
endef
|
||||
|
||||
define Package/w3m/install
|
||||
$(INSTALL_DIR) $(1)/usr/bin
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/w3m $(1)/usr/bin/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,w3m))
|
Loading…
Reference in New Issue
Block a user