80 lines
1.5 KiB
Makefile
80 lines
1.5 KiB
Makefile
|
#
|
||
|
# 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:=gtkhtml
|
||
|
PKG_RELEASE:=1
|
||
|
PKG_VERSION:=3.29.1
|
||
|
PKG_SOURCE_URL:=@GNOME/$(PKG_NAME)/3.29
|
||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||
|
|
||
|
include $(INCLUDE_DIR)/package.mk
|
||
|
|
||
|
PKG_INSTALL:=1
|
||
|
|
||
|
define Package/gtkhtml
|
||
|
SECTION:=xorg-app
|
||
|
CATEGORY:=Xorg
|
||
|
SUBMENU:=app
|
||
|
DEPENDS:=+gtk2 +libgconf2 +gnome-icon-theme
|
||
|
TITLE:=gtkhtml
|
||
|
URL:=http://www.gnome.org/projects/gtkhtml/
|
||
|
endef
|
||
|
|
||
|
TARGET_CFLAGS+=\
|
||
|
-I$(STAGING_DIR)/usr/lib/libintl/include/ \
|
||
|
-I$(STAGING_DIR)/usr/lib/libiconv/include/
|
||
|
|
||
|
TARGET_LDFLAGS+=\
|
||
|
-Wl,-rpath-link=$(STAGING_DIR)/usr/lib \
|
||
|
-L$(STAGING_DIR)/usr/lib/libintl/lib/ \
|
||
|
-L$(STAGING_DIR)/usr/lib/libiconv/lib/
|
||
|
|
||
|
define Build/Configure
|
||
|
$(call Build/Configure/Default, \
|
||
|
--enable-shared \
|
||
|
--enable-static \
|
||
|
--disable-shlib-factory \
|
||
|
);
|
||
|
endef
|
||
|
|
||
|
define Build/InstallDev
|
||
|
$(INSTALL_DIR) \
|
||
|
$(1)/usr/lib/pkgconfig \
|
||
|
$(1)/usr/include \
|
||
|
$(1)/usr/lib
|
||
|
|
||
|
$(CP) \
|
||
|
$(PKG_INSTALL_DIR)/usr/lib/*.{la,a,so*} \
|
||
|
$(1)/usr/lib/
|
||
|
|
||
|
$(CP) \
|
||
|
$(PKG_INSTALL_DIR)/usr/include/* \
|
||
|
$(1)/usr/include/
|
||
|
|
||
|
$(CP) \
|
||
|
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* \
|
||
|
$(1)/usr/lib/pkgconfig/
|
||
|
endef
|
||
|
|
||
|
define Package/gtkhtml/install
|
||
|
$(INSTALL_DIR) \
|
||
|
$(1)/usr/share \
|
||
|
$(1)/usr/lib
|
||
|
|
||
|
$(CP) \
|
||
|
$(PKG_INSTALL_DIR)/usr/lib/*.so* \
|
||
|
$(1)/usr/lib/
|
||
|
|
||
|
$(CP) \
|
||
|
$(PKG_INSTALL_DIR)/usr/share/gtkhtml* \
|
||
|
$(1)/usr/share/
|
||
|
endef
|
||
|
|
||
|
$(eval $(call BuildPackage,gtkhtml))
|