You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
1.7 KiB

  1. #
  2. # Copyright (C) 2014-2016 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. # updated to work with latest source from abrasive
  7. #
  8. include $(TOPDIR)/rules.mk
  9. PKG_NAME:=libsoxr
  10. PKG_VERSION:=0.1.1
  11. PKG_RELEASE:=3
  12. PKG_SOURCE_PROTO:=git
  13. PKG_SOURCE_URL:=git://git.code.sf.net/p/soxr/code
  14. PKG_SOURCE_VERSION:=$(PKG_VERSION)
  15. PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
  16. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
  17. PKG_MAINTAINER:=Ted Hess <thess@kitschensync.net>, \
  18. Mike Brady <mikebrady@eircom.net>
  19. PKG_LICENSE:=LGPL-2.1
  20. PKG_LICENSE_FILES:=LICENCE
  21. PKG_FIXUP:=libtool
  22. PKG_REMOVE_FILES:=autogen.sh
  23. PKG_BUILD_PARALLEL:=1
  24. PKG_INSTALL:=1
  25. include $(INCLUDE_DIR)/package.mk
  26. include $(INCLUDE_DIR)/cmake.mk
  27. define Package/libsoxr
  28. SECTION:=libs
  29. CATEGORY:=Libraries
  30. TITLE:=The SoX Resampler library
  31. URL:=http://sourceforge.net/projects/soxr/
  32. DEPENDS:= +libpthread
  33. endef
  34. define Package/libsoxr/description
  35. The SoX Resampler library
  36. High quality, one-dimensional sample-rate conversion library
  37. endef
  38. CMAKE_OPTIONS:= -DBUILD_TESTS=0 -DBUILD_EXAMPLES=0
  39. CMAKE_OPTIONS+= -DHAVE_WORDS_BIGENDIAN_EXITCODE=$(if $(CONFIG_BIG_ENDIAN),0,1)
  40. CMAKE_OPTIONS+= -DWITH_OPENMP=0
  41. define Build/InstallDev
  42. $(INSTALL_DIR) $(1)/usr/include
  43. $(CP) $(PKG_INSTALL_DIR)/usr/include/soxr.h $(1)/usr/include/
  44. $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
  45. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libsoxr.so* $(1)/usr/lib/
  46. $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/soxr.pc $(1)/usr/lib/pkgconfig/
  47. endef
  48. define Package/libsoxr/install
  49. $(INSTALL_DIR) $(1)/usr/lib
  50. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libsoxr.so* $(1)/usr/lib/
  51. endef
  52. $(eval $(call BuildPackage,libsoxr))