Remove UninstallDev template, which is no longer required
[packages.git] / libs / freetype / 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:=freetype
12 PKG_VERSION:=2.3.7
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_URL:=@SF/freetype
17 PKG_MD5SUM:=83306194817ebdea554133b4232a34aa
18
19 PKG_FIXUP = libtool
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/libfreetype
24   SECTION:=libs
25   CATEGORY:=Libraries
26   DEPENDS:=+zlib
27   TITLE:=A free, high-quality and portable font engine
28   URL:=http://www.freetype.org/
29 endef
30
31 define Package/libfreetype/description
32  The FreeType project is a team of volunteers who develop free, 
33  portable and high-quality software solutions for digital typography.
34  They specifically target embedded systems and focus on bringing small, 
35  efficient and ubiquitous products.
36 endef
37
38 CONFIGURE_ARGS += \
39         --enable-shared \
40         --enable-static \
41
42 define Build/Compile
43         $(MAKE) -C $(PKG_BUILD_DIR) DESTDIR="$(PKG_INSTALL_DIR)" all install
44 endef
45
46 define Build/InstallDev
47         mkdir -p $(2)/bin
48         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/freetype-config $(2)/bin/
49         mkdir -p $(1)/usr/include
50         $(CP) $(PKG_INSTALL_DIR)/usr/include/freetype2 $(1)/usr/include/
51         $(CP) $(PKG_INSTALL_DIR)/usr/include/ft2build.h $(1)/usr/include/
52         mkdir -p $(1)/usr/lib
53         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libfreetype.{a,so*} $(1)/usr/lib/
54         mkdir -p $(1)/usr/lib/pkgconfig
55         $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/freetype2.pc $(1)/usr/lib/pkgconfig/
56         $(SED) 's,-I$$$$includedir/freetype2,-I$(STAGING_DIR)/usr/include/freetype2,g' $(2)/bin/freetype-config
57         $(SED) 's,/usr/include/freetype2/,$(STAGING_DIR)/usr/include/freetype2/,g' $(2)/bin/freetype-config
58 endef
59
60
61 define Package/libfreetype/install
62         $(INSTALL_DIR) $(1)/usr/lib
63         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libfreetype.so.* $(1)/usr/lib/
64 endef
65
66 $(eval $(call BuildPackage,libfreetype))