spandsp: Enable parallel build
[openwrt/svn-archive/archive.git] / libs / spandsp / Makefile
1 #
2 # Copyright (C) 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
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=spandsp
12 PKG_VERSION:=0.0.6
13 PKG_RELEASE:=17
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)pre17.tgz
16 PKG_SOURCE_URL:=http://www.soft-switch.org/downloads/spandsp/
17 PKG_MD5SUM:=cc860f77270cf3b881f8ccd42d2d0238
18
19 PKG_INSTALL:=1
20 PKG_BUILD_PARALLEL:=1
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/libspandsp
25 SECTION:=libs
26 CATEGORY:=Libraries
27 TITLE:=spandsp library
28 DEPENDS:=+libtiff
29 endef
30
31 CONFIGURE_ARGS+= LIBS="-Wl,-rpath-link=$(STAGING_DIR)/usr/lib"
32
33 TARGET_CFLAGS += $(FPIC)
34
35 define Build/InstallDev
36 $(INSTALL_DIR) $(1)/usr/{lib,include}
37 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libspandsp* $(1)/usr/lib
38 $(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
39 endef
40
41 define Package/libspandsp/install
42 $(INSTALL_DIR) $(1)/usr/lib
43 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libspandsp*so* $(1)/usr/lib/
44 endef
45
46 $(eval $(call BuildPackage,libspandsp))