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.

53 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. include $(INCLUDE_DIR)/package.mk
  21. include $(INCLUDE_DIR)/cmake.mk
  22. define Package/libsoxr
  23. SECTION:=libs
  24. CATEGORY:=Libraries
  25. TITLE:=The SoX Resampler library
  26. URL:=https://sourceforge.net/projects/soxr/
  27. DEPENDS:= +libpthread
  28. endef
  29. define Package/libsoxr/description
  30. The SoX Resampler library
  31. High quality, one-dimensional sample-rate conversion library
  32. endef
  33. CMAKE_OPTIONS += \
  34. -DBUILD_TESTS=0 \
  35. -DBUILD_EXAMPLES=0 \
  36. -DWITH_OPENMP=0 \
  37. -DHAVE_WORDS_BIGENDIAN_EXITCODE=$(if $(CONFIG_BIG_ENDIAN),0,1)
  38. define Package/libsoxr/install
  39. $(INSTALL_DIR) $(1)/usr/lib
  40. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libsoxr.so* $(1)/usr/lib/
  41. endef
  42. $(eval $(call BuildPackage,libsoxr))