On 18 October 2010 12:30, Michael Büsch <m...@bu3sch.de> wrote:
> On Mon, 2010-10-18 at 02:22 +0300, Roman Yeryomin wrote:
>> Signed-off-by: Roman Yeryomin <ro...@advem.lv>
>>
>> +
>> +TARGET_CFLAGS += $(FPIC)
>> +MAKE_FLAGS += all install DESTDIR=$(PKG_INSTALL_DIR)
>
> This most likely breaks parallel build.
> Please remove the additional MAKE_FLAGS completely and add
> PKG_INSTALL:=1 to the top of the file
>

tested

Index: feeds/packages/libs/spandsp/Makefile
===================================================================
--- feeds/packages/libs/spandsp/Makefile        (revision 0)
+++ feeds/packages/libs/spandsp/Makefile        (revision 0)
@@ -0,0 +1,44 @@
+#
+# Copyright (C) 2010 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=spandsp
+PKG_VERSION:=0.0.6
+PKG_RELEASE:=17
+
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)pre17.tgz
+PKG_SOURCE_URL:=http://www.soft-switch.org/downloads/spandsp/
+PKG_MD5SUM:=cc860f77270cf3b881f8ccd42d2d0238
+
+PKG_INSTALL:=1
+
+include $(INCLUDE_DIR)/package.mk
+
+define Package/libspandsp
+  SECTION:=libs
+  CATEGORY:=Libraries
+  TITLE:=spandsp library
+  DEPENDS:=+libtiff
+endef
+
+CONFIGURE_ARGS+= LIBS="-Wl,-rpath-link=$(STAGING_DIR)/usr/lib"
+TARGET_CFLAGS += $(FPIC)
+
+define Build/InstallDev
+       $(INSTALL_DIR) $(1)/usr/{lib,include}
+       $(CP) $(PKG_INSTALL_DIR)/usr/lib/libspandsp* $(1)/usr/lib
+       $(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
+endef
+
+define Package/libspandsp/install
+       $(INSTALL_DIR) $(1)/usr/lib
+       $(CP) $(PKG_INSTALL_DIR)/usr/lib/libspandsp*so* $(1)/usr/lib/
+endef
+
+$(eval $(call BuildPackage,libspandsp))
_______________________________________________
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel

Reply via email to