d3f88ea2252a6fc229cbc6422aa8eb629790b4b6
[feed/packages.git] / libs / libsoxr / Makefile
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
7 include $(TOPDIR)/rules.mk
8
9 PKG_NAME:=libsoxr
10 PKG_VERSION:=0.1.3
11 PKG_RELEASE:=2
12
13 PKG_SOURCE_URL:=@SF/project/soxr/
14 PKG_SOURCE:=soxr-$(PKG_VERSION)-Source.tar.xz
15 PKG_HASH:=b111c15fdc8c029989330ff559184198c161100a59312f5dc19ddeb9b5a15889
16 PKG_BUILD_DIR:=$(BUILD_DIR)/soxr-$(PKG_VERSION)-Source
17
18 PKG_MAINTAINER:=Ted Hess <thess@kitschensync.net>, \
19 Mike Brady <mikebrady@eircom.net>
20 PKG_LICENSE:=LGPL-2.1
21 PKG_LICENSE_FILES:=LICENCE
22 PKG_CPE_ID:=cpe:/a:sox:sox
23
24 CMAKE_INSTALL:=1
25 PKG_BUILD_PARALLEL:=1
26
27 include $(INCLUDE_DIR)/package.mk
28 include $(INCLUDE_DIR)/cmake.mk
29
30 define Package/libsoxr
31 SECTION:=libs
32 CATEGORY:=Libraries
33 TITLE:=The SoX Resampler library
34 URL:=https://sourceforge.net/projects/soxr/
35 DEPENDS:= +libpthread
36 endef
37
38 define Package/libsoxr/description
39 The SoX Resampler library
40 High quality, one-dimensional sample-rate conversion library
41 endef
42
43 CMAKE_OPTIONS:= -DBUILD_TESTS=0 -DBUILD_EXAMPLES=0
44 CMAKE_OPTIONS+= -DHAVE_WORDS_BIGENDIAN_EXITCODE=$(if $(CONFIG_BIG_ENDIAN),0,1)
45 CMAKE_OPTIONS+= -DWITH_OPENMP=0
46
47 define Package/libsoxr/install
48 $(INSTALL_DIR) $(1)/usr/lib
49 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libsoxr.so* $(1)/usr/lib/
50 endef
51
52 $(eval $(call BuildPackage,libsoxr))