From 20ef1ff1fc51f3f1180faadb7962cc5aebe85590 Mon Sep 17 00:00:00 2001 From: mb Date: Mon, 18 Oct 2010 21:35:46 +0000 Subject: [PATCH] From: Roman Yeryomin add spandsp library package git-svn-id: svn://svn.openwrt.org/openwrt/packages@23523 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- libs/spandsp/Makefile | 44 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 libs/spandsp/Makefile diff --git a/libs/spandsp/Makefile b/libs/spandsp/Makefile new file mode 100644 index 000000000..e4b689d58 --- /dev/null +++ b/libs/spandsp/Makefile @@ -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))