eb8fed8b4e556895f51562ed319347f52577b296
[packages.git] / libs / libart / Makefile
1
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=libart
12 PKG_VERSION:=2.3.19
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)_lgpl-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://ftp.gnome.org/pub/gnome/sources/libart_lgpl/2.3
17 PKG_MD5SUM:=a2992b830295132dae2bf85d1156e48e
18
19 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)_lgpl-$(PKG_VERSION)
20 PKG_FIXUP:=libtool
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/libart
25   SECTION:=libs
26   CATEGORY:=Libraries
27   TITLE:=An high-performance 2D graphics library
28   URL:=http://www.levien.com/libart/
29 endef
30
31 define Package/libart/description
32         A library of functions for 2D graphics supporting a superset of the 
33         PostScript imaging model, designed to be integrated with graphics, artwork, 
34         and illustration programs. It is written in optimized C, and is fully 
35         compatible with C++. With a small footprint of 10,000 lines of code, it is 
36         especially suitable for embedded applications.
37 endef
38
39 CONFIGURE_ARGS += \
40         --enable-shared \
41         --enable-static
42
43 define Build/Compile
44         $(MAKE) -C $(PKG_BUILD_DIR) \
45                 HOSTCC="$(HOSTCC)" \
46                 DESTDIR="$(PKG_INSTALL_DIR)" \
47                 all install
48 endef
49
50 define Build/InstallDev
51         $(INSTALL_DIR) $(1)/usr/bin $(1)/usr/include $(1)/usr/lib $(1)/usr/lib/pkgconfig
52         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/libart2-config $(1)/usr/bin/
53         $(CP) $(PKG_INSTALL_DIR)/usr/include/libart-2.0 $(1)/usr/include/
54         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libart_lgpl_2.{la,a,so*} $(1)/usr/lib/
55         $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libart-2.0.pc $(1)/usr/lib/pkgconfig/
56 endef
57
58 define Package/libart/install
59         $(INSTALL_DIR) $(1)/usr/lib
60         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libart_lgpl_2.so.* $(1)/usr/lib/
61 endef
62
63 $(eval $(call BuildPackage,libart))