#
# Copyright (C) 2006-2010 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
# blogic@openwrt.org

include $(TOPDIR)/rules.mk

DL_DIR:=$(TOPDIR)/../necpf/prebuilt/necpf-dl

PKG_NAME:=atk
PKG_VERSION:=2.14.0
PKG_RELEASE:=3

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
#PKG_SOURCE_URL:=@GNOME/$(PKG_NAME)/2.14/
PKG_SOURCE_URL:=https://download.gnome.org/sources/atk/2.14/
PKG_HASH:=skip

PKG_FIXUP:=libtool
PKG_INSTALL:=1

include $(INCLUDE_DIR)/package.mk

TARGET_LDFLAGS += \
	-L$(STAGING_DIR)/usr/lib/libiconv/lib/ \
	-L$(STAGING_DIR)/usr/lib/libintl/lib/ \

define Package/atk
	SECTION:=lib
	CATEGORY:=Libraries
	TITLE:=Accesibility library for gtk+ apps
	DEPENDS:=+glib2
endef

define Build/InstallDev
	$(INSTALL_DIR) $(1)/usr/{lib,include}
	$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib* $(1)/usr/lib
	$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/ $(1)/usr/lib/
	$(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
endef

define Package/atk/install
	$(INSTALL_DIR) $(1)/usr/lib
	$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib*so* $(1)/usr/lib/
endef

$(eval $(call BuildPackage,atk))
