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.

52 lines
1.3 KiB

  1. #
  2. # This is free software, licensed under the GNU General Public License v2.
  3. # See /LICENSE for more information.
  4. # updated to work with latest source from abrasive
  5. #
  6. include $(TOPDIR)/rules.mk
  7. PKG_NAME:=libsoxr
  8. PKG_VERSION:=0.1.3
  9. PKG_RELEASE:=2
  10. PKG_SOURCE_URL:=@SF/project/soxr/
  11. PKG_SOURCE:=soxr-$(PKG_VERSION)-Source.tar.xz
  12. PKG_HASH:=b111c15fdc8c029989330ff559184198c161100a59312f5dc19ddeb9b5a15889
  13. PKG_BUILD_DIR:=$(BUILD_DIR)/soxr-$(PKG_VERSION)-Source
  14. PKG_MAINTAINER:=Ted Hess <thess@kitschensync.net>, \
  15. Mike Brady <mikebrady@eircom.net>
  16. PKG_LICENSE:=LGPL-2.1
  17. PKG_LICENSE_FILES:=LICENCE
  18. PKG_CPE_ID:=cpe:/a:sox:sox
  19. CMAKE_INSTALL:=1
  20. PKG_BUILD_PARALLEL:=1
  21. include $(INCLUDE_DIR)/package.mk
  22. include $(INCLUDE_DIR)/cmake.mk
  23. define Package/libsoxr
  24. SECTION:=libs
  25. CATEGORY:=Libraries
  26. TITLE:=The SoX Resampler library
  27. URL:=https://sourceforge.net/projects/soxr/
  28. DEPENDS:= +libpthread
  29. endef
  30. define Package/libsoxr/description
  31. The SoX Resampler library
  32. High quality, one-dimensional sample-rate conversion library
  33. endef
  34. CMAKE_OPTIONS:= -DBUILD_TESTS=0 -DBUILD_EXAMPLES=0
  35. CMAKE_OPTIONS+= -DHAVE_WORDS_BIGENDIAN_EXITCODE=$(if $(CONFIG_BIG_ENDIAN),0,1)
  36. CMAKE_OPTIONS+= -DWITH_OPENMP=0
  37. define Package/libsoxr/install
  38. $(INSTALL_DIR) $(1)/usr/lib
  39. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libsoxr.so* $(1)/usr/lib/
  40. endef
  41. $(eval $(call BuildPackage,libsoxr))