packages/Xorg/lib/pixman/Makefile
mirko 0132337abb [packages/pixman] remove aclocal.m4 to force regeneration
git-svn-id: svn://svn.openwrt.org/openwrt/packages@24447 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-12-10 20:10:43 +00:00

53 lines
981 B
Makefile

#
# Copyright (C) 2008-2010 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_REMOVE_FILES:=aclocal.m4
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
define Package/pixman
SECTION:=xorg-libraries
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))