2010-02-18 13:10:21 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
2007-10-04 19:01:52 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
# blogic@openwrt.org
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=atk
|
2008-09-01 23:24:49 +00:00
|
|
|
PKG_VERSION:=1.22.0
|
2010-02-18 13:10:21 +00:00
|
|
|
PKG_RELEASE:=3
|
2007-10-04 19:01:52 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
2008-09-01 23:24:49 +00:00
|
|
|
PKG_SOURCE_URL:=@GNOME/$(PKG_NAME)/1.22/
|
|
|
|
PKG_MD5SUM:=06a2b39a22d5ca35c47435da6b9643ac
|
2010-02-18 13:10:21 +00:00
|
|
|
|
2007-12-27 09:27:08 +00:00
|
|
|
PKG_FIXUP:=libtool
|
2010-12-10 20:10:23 +00:00
|
|
|
|
2010-02-18 13:10:21 +00:00
|
|
|
PKG_INSTALL:=1
|
2007-10-04 19:01:52 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2011-02-02 18:54:24 +00:00
|
|
|
include $(INCLUDE_DIR)/nls.mk
|
2007-10-06 00:33:02 +00:00
|
|
|
|
2007-10-04 19:01:52 +00:00
|
|
|
define Package/atk
|
2010-03-28 06:27:01 +00:00
|
|
|
SECTION:=xorg-libraries
|
2007-10-04 19:01:52 +00:00
|
|
|
CATEGORY:=Xorg
|
|
|
|
SUBMENU:=libraries
|
|
|
|
TITLE:=Accesibility library for gtk+ apps
|
2009-11-12 11:18:12 +00:00
|
|
|
DEPENDS:=+glib2
|
2007-10-04 19:01:52 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/InstallDev
|
2007-10-07 03:20:26 +00:00
|
|
|
$(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/
|
2007-10-04 19:01:52 +00:00
|
|
|
endef
|
|
|
|
|
2008-05-24 17:11:10 +00:00
|
|
|
define Package/atk/install
|
2007-10-04 19:01:52 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib*so* $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,atk))
|