2008-11-17 00:31:25 +00:00
|
|
|
#
|
2010-03-28 06:27:01 +00:00
|
|
|
# Copyright (C) 2008-2010 OpenWrt.org
|
2008-01-25 11:23:41 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2008-11-17 00:31:25 +00:00
|
|
|
|
2008-01-25 11:23:41 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2008-11-16 19:31:42 +00:00
|
|
|
PKG_NAME:=pixman
|
2009-03-06 20:58:21 +00:00
|
|
|
PKG_RELEASE:=1
|
2009-10-31 00:27:06 +00:00
|
|
|
PKG_VERSION:=0.16.2
|
2008-11-17 00:31:25 +00:00
|
|
|
|
2008-11-16 19:31:42 +00:00
|
|
|
PKG_SOURCE_URL:=http://cairographics.org/releases/
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2009-10-31 00:27:06 +00:00
|
|
|
PKG_MD5SUM:=02bd3669f53c404c19980d5efb6f86fb
|
2009-03-06 20:58:21 +00:00
|
|
|
|
2008-11-17 00:31:25 +00:00
|
|
|
PKG_FIXUP:=libtool
|
2009-03-06 20:58:21 +00:00
|
|
|
PKG_INSTALL:=1
|
2008-01-25 11:23:41 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2008-11-16 19:31:42 +00:00
|
|
|
define Package/pixman
|
2010-03-28 06:27:01 +00:00
|
|
|
SECTION:=xorg-libraries
|
2008-01-25 11:23:41 +00:00
|
|
|
CATEGORY:=Xorg
|
2009-01-09 17:10:38 +00:00
|
|
|
SUBMENU:=libraries
|
2008-11-16 19:31:42 +00:00
|
|
|
TITLE:=pixman
|
2008-11-17 00:31:25 +00:00
|
|
|
URL:=http://cairographics.org/
|
2008-01-25 11:23:41 +00:00
|
|
|
endef
|
|
|
|
|
2008-11-17 00:31:25 +00:00
|
|
|
define Build/Configure
|
|
|
|
$(call Build/Configure/Default, \
|
|
|
|
--disable-gtk \
|
2009-03-06 20:58:21 +00:00
|
|
|
--disable-arm-simd \
|
2008-11-17 00:31:25 +00:00
|
|
|
)
|
2008-11-16 19:31:42 +00:00
|
|
|
endef
|
|
|
|
|
2008-11-17 00:31:25 +00:00
|
|
|
define Build/InstallDev
|
|
|
|
$(INSTALL_DIR) $(1)
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/* $(1)
|
2008-01-25 11:23:41 +00:00
|
|
|
endef
|
|
|
|
|
2008-11-16 19:31:42 +00:00
|
|
|
define Package/pixman/install
|
2008-01-25 11:23:41 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2009-01-04 00:06:33 +00:00
|
|
|
$(CP) \
|
2008-11-17 00:31:25 +00:00
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/*.so* \
|
|
|
|
$(1)/usr/lib/
|
2008-01-25 11:23:41 +00:00
|
|
|
endef
|
|
|
|
|
2008-11-16 19:31:42 +00:00
|
|
|
$(eval $(call BuildPackage,pixman))
|