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