1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-07-05 00:51:04 +03:00
openwrt-packages/links/Makefile
2009-10-30 23:26:30 +08:00

49 lines
1017 B
Makefile

#
# 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:=links
PKG_VERSION:=2.2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=http://links.twibright.com/download/
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
define Package/links
TITLE:=links
SECTION:=network
CATEGORY:=Network
URL:=http://links.twibright.com/
endef
define Package/links/description
Text and graphics WWW browser
endef
CONFIGURE_ARGS += --enable-graphics \
--enable-debuglevel=0 \
--without-gpm \
--without-svgalib \
--without-pmshell \
--without-atheos \
--without-x \
--without-fb
define Package/links/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/links $(1)/usr/bin/
endef
$(eval $(call BuildPackage,links))