explicitly disable gtk tests.
[openwrt/svn-archive/archive.git] / XOrg / lib / pixman / Makefile
1 #
2 # Copyright (C) 2008 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=pixman
11 PKG_VERSION:=0.11.8
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://cairographics.org/releases/
16 PKG_MD5SUM:=7b5db768c51337b5e5e954fc9c961cd3
17 PKG_FIXUP:=libtool
18
19 include $(INCLUDE_DIR)/package.mk
20
21 PKG_INSTALL=1
22
23 define Package/pixman
24 SECTION:=xorg-libs
25 CATEGORY:=Xorg
26 SUBMENU:=libraries
27 TITLE:=pixman
28 endef
29
30 define Package/pixman/description
31 pixman is a library that provides low-level pixel manipulation
32 features such as image compositing and trapezoid rasterization.
33 endef
34
35 define Build/Configure
36 $(call Build/Configure/Default,--disable-gtk)
37 endef
38
39 define Build/InstallDev
40 $(INSTALL_DIR) $(1)
41 $(CP) $(PKG_INSTALL_DIR)/* $(1)/
42 endef
43
44 define Package/pixman/install
45 $(INSTALL_DIR) $(1)/usr/lib
46 $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib*so* $(1)/usr/lib/
47 endef
48
49 $(eval $(call BuildPackage,pixman))