liboil fixes:
[packages.git] / libs / liboil / Makefile
1
2 # Copyright (C) 2007-2009 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:=liboil
12 PKG_VERSION:=0.3.15
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://liboil.freedesktop.org/download/
17 PKG_MD5SUM:=11dd39b1ca13ce2e0618d4df8303f137
18
19 PKG_BUILD_DEPENDS:=libnotimpl
20 PKG_FIXUP = libtool
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/liboil
25   SECTION:=libs
26   CATEGORY:=Libraries
27   TITLE:=simple functions optimized for various CPUs
28   URL:=http://liboil.freedesktop.org/wiki/
29 endef
30
31 define Package/liboil/description
32   Liboil is a library of simple functions that are optimized for various CPUs.
33   These functions are generally loops implementing simple algorithms, such as
34   converting an array of N integers to floating-point numbers or multiplying
35   and summing an array of N numbers. Such functions are candidates for significant
36   optimization using various techniques, especially by using extended instructions
37   provided by modern CPUs (Altivec, MMX, SSE, etc.).
38 endef
39
40 TARGET_CFLAGS += $(FPIC)
41
42 CONFIGURE_ARGS += \
43         --enable-shared \
44         --enable-static \
45
46 # XXX: VFP_CFLAGS is set to '-mfpu=vfp' on arm by configure, but that breaks 
47 # final linking stages, so override it until we find why
48 define Build/Compile
49         $(MAKE) -C $(PKG_BUILD_DIR) \
50                 DESTDIR="$(PKG_INSTALL_DIR)" \
51                 VFP_CFLAGS="" \
52                 all install
53 endef
54
55 define Build/InstallDev
56         $(INSTALL_DIR) $(1)/usr/include
57         $(CP) $(PKG_INSTALL_DIR)/usr/include/liboil-0.3/* $(1)/usr/include/
58         $(INSTALL_DIR) $(1)/usr/lib
59         $(CP) $(PKG_INSTALL_DIR)/usr/lib/liboil-0.3.{a,so*} $(1)/usr/lib/
60         $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
61         $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/liboil-0.3.pc $(1)/usr/lib/pkgconfig/
62 endef
63
64 define Package/liboil/install
65         $(INSTALL_DIR) $(1)/usr/lib
66         $(CP) $(PKG_INSTALL_DIR)/usr/lib/liboil-0.3.so.* $(1)/usr/lib/
67 endef
68
69 $(eval $(call BuildPackage,liboil))