8a8954e1de
git-svn-id: svn://svn.openwrt.org/openwrt/packages@13250 3c298f89-4303-0410-b956-a3cf2f4a3e73
51 lines
943 B
Makefile
51 lines
943 B
Makefile
#
|
|
# Copyright (C) 2008 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_BASE_NAME:=pixman
|
|
PKG_NAME:=pixman
|
|
PKG_RELEASE:=3
|
|
PKG_VERSION:=0.12.0
|
|
|
|
PKG_SOURCE_URL:=http://cairographics.org/releases/
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_MD5SUM:=09357cc74975b01714e00c5899ea1881
|
|
PKG_FIXUP:=libtool
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
define Package/pixman
|
|
SECTION:=xorg-lib
|
|
CATEGORY:=Xorg
|
|
SUBMENU:=lib
|
|
TITLE:=pixman
|
|
URL:=http://cairographics.org/
|
|
endef
|
|
|
|
define Build/Configure
|
|
$(call Build/Configure/Default, \
|
|
--disable-gtk \
|
|
)
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)
|
|
$(CP) $(PKG_INSTALL_DIR)/* $(1)
|
|
endef
|
|
|
|
define Package/pixman/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(INSTALL_DATA) \
|
|
$(PKG_INSTALL_DIR)/usr/lib/*.so* \
|
|
$(1)/usr/lib/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,pixman))
|