noddos: Noddos v0.5.0 with mDNS / DNS-SD support
[feed/packages.git] / libs / libsoxr / Makefile
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
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=libsoxr
12 PKG_VERSION:=0.1.1
13 PKG_RELEASE:=3
14
15 PKG_SOURCE_PROTO:=git
16 PKG_SOURCE_URL:=git://git.code.sf.net/p/soxr/code
17 PKG_SOURCE_VERSION:=$(PKG_VERSION)
18 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
19 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
20
21 PKG_MAINTAINER:=Ted Hess <thess@kitschensync.net>, \
22 Mike Brady <mikebrady@eircom.net>
23
24 PKG_LICENSE:=LGPL-2.1
25 PKG_LICENSE_FILES:=LICENCE
26
27 PKG_FIXUP:=libtool
28 PKG_REMOVE_FILES:=autogen.sh
29
30 PKG_BUILD_PARALLEL:=1
31 PKG_INSTALL:=1
32
33 include $(INCLUDE_DIR)/package.mk
34 include $(INCLUDE_DIR)/cmake.mk
35
36 define Package/libsoxr
37 SECTION:=libs
38 CATEGORY:=Libraries
39 TITLE:=The SoX Resampler library
40 URL:=http://sourceforge.net/projects/soxr/
41 DEPENDS:= +libpthread
42 endef
43
44 define Package/libsoxr/description
45 The SoX Resampler library
46 High quality, one-dimensional sample-rate conversion library
47 endef
48
49 CMAKE_OPTIONS:= -DBUILD_TESTS=0 -DBUILD_EXAMPLES=0
50 CMAKE_OPTIONS+= -DHAVE_WORDS_BIGENDIAN_EXITCODE=$(if $(CONFIG_BIG_ENDIAN),0,1)
51 CMAKE_OPTIONS+= -DWITH_OPENMP=0
52
53 define Build/InstallDev
54 $(INSTALL_DIR) $(1)/usr/include
55 $(CP) $(PKG_INSTALL_DIR)/usr/include/soxr.h $(1)/usr/include/
56 $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
57 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libsoxr.so* $(1)/usr/lib/
58 $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/soxr.pc $(1)/usr/lib/pkgconfig/
59 endef
60
61 define Package/libsoxr/install
62 $(INSTALL_DIR) $(1)/usr/lib
63 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libsoxr.so* $(1)/usr/lib/
64 endef
65
66 $(eval $(call BuildPackage,libsoxr))