packages/Xorg/lib/pixman/Makefile
lars 8ef469bd71 [packages] Update pixman to 0.16.2
git-svn-id: svn://svn.openwrt.org/openwrt/packages@18241 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-10-31 00:27:06 +00:00

51 lines
945 B
Makefile

#
# Copyright (C) 2008-2009 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:=pixman
PKG_RELEASE:=1
PKG_VERSION:=0.16.2
PKG_SOURCE_URL:=http://cairographics.org/releases/
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_MD5SUM:=02bd3669f53c404c19980d5efb6f86fb
PKG_FIXUP:=libtool
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
define Package/pixman
SECTION:=xorg-lib
CATEGORY:=Xorg
SUBMENU:=libraries
TITLE:=pixman
URL:=http://cairographics.org/
endef
define Build/Configure
$(call Build/Configure/Default, \
--disable-gtk \
--disable-arm-simd \
)
endef
define Build/InstallDev
$(INSTALL_DIR) $(1)
$(CP) $(PKG_INSTALL_DIR)/* $(1)
endef
define Package/pixman/install
$(INSTALL_DIR) $(1)/usr/lib
$(CP) \
$(PKG_INSTALL_DIR)/usr/lib/*.so* \
$(1)/usr/lib/
endef
$(eval $(call BuildPackage,pixman))