[packages/pixman] remove aclocal.m4 to force regeneration
[packages.git] / Xorg / lib / pixman / Makefile
1 #
2 # Copyright (C) 2008-2010 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_RELEASE:=1
12 PKG_VERSION:=0.16.2
13
14 PKG_SOURCE_URL:=http://cairographics.org/releases/
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_MD5SUM:=02bd3669f53c404c19980d5efb6f86fb
17
18 PKG_FIXUP:=libtool
19 PKG_REMOVE_FILES:=aclocal.m4
20
21 PKG_INSTALL:=1
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/pixman
26   SECTION:=xorg-libraries
27   CATEGORY:=Xorg
28   SUBMENU:=libraries
29   TITLE:=pixman
30   URL:=http://cairographics.org/
31 endef
32
33 define Build/Configure
34         $(call Build/Configure/Default, \
35                 --disable-gtk \
36                 --disable-arm-simd \
37         )
38 endef
39
40 define Build/InstallDev
41         $(INSTALL_DIR) $(1)
42         $(CP) $(PKG_INSTALL_DIR)/* $(1)
43 endef
44
45 define Package/pixman/install
46         $(INSTALL_DIR) $(1)/usr/lib
47         $(CP) \
48                 $(PKG_INSTALL_DIR)/usr/lib/*.so* \
49                 $(1)/usr/lib/
50 endef
51
52 $(eval $(call BuildPackage,pixman))