packages/Xorg/app/dillo/Makefile

69 lines
2.0 KiB
Makefile
Raw Normal View History

#
# Copyright (C) 2006-2008 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
# $Id: Makefile 12228 2008-08-06 22:43:15Z nbd $
include $(TOPDIR)/rules.mk
PKG_NAME:=dillo
PKG_REV:=cc974615ae39
PKG_VERSION:=r$(PKG_REV)
PKG_RELEASE:=1
PKG_SOURCE_PROTO:=hg
PKG_SOURCE_VERSION:=$(PKG_REV)
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://freehg.org/u/dillo/main
PKG_BUILD_DIR=$(BUILD_DIR)/Xorg/$(_CATEGORY)/$(PKG_NAME)-$(PKG_VERSION)/
include $(INCLUDE_DIR)/package.mk
define Package/dillo
SECTION:=xorg-app
CATEGORY:=Xorg
SUBMENU:=app
TITLE:=Dillo2
URL:=http://fltk.org/
DEPENDS:=+libXft +libstdcpp +libpthread +zlib +fltk2
endef
define Package/dillo/description
Dillo is a web browser project completely written in C.
Dillo aims to be a multi-platform browser alternative that
is small, stable, developer-friendly, usable, fast, and
extensible.
Note: This is the fltk2 based dillo.
endef
EXTRA_CPPFLAGS+=-I$(STAGING_DIR)/usr/lib/libiconv/include
EXTRA_LDFLAGS+=-L$(STAGING_DIR)/usr/lib/libiconv/lib -Wl,-rpath-link=$(STAGING_DIR)/usr/lib
define Build/Configure
(cd $(PKG_BUILD_DIR); ./autogen.sh );
$(call Build/Configure/Default)
endef
define Build/Install
DESTDIR="$(PKG_INSTALL_DIR)" $(MAKE) -C $(PKG_BUILD_DIR) install
endef
define Package/dillo/install
$(INSTALL_DIR) $(1)/etc $(1)/usr/share/applications $(1)/usr/share/icons
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/etc/* $(1)/etc/
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dillo $(1)/usr/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dpid $(1)/usr/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dpidc $(1)/usr/bin
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/dillo $(1)/usr/lib/
$(CP) ./files/dillo.png $(1)/usr/share/icons/
$(INSTALL_DATA) ./files/dillo.desktop $(1)/usr/share/applications/
endef
$(eval $(call BuildPackage,dillo))