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.
 
 
 
 
 
 

57 lines
1.3 KiB

#
# Copyright (C) 2007-2018 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=libsndfile
PKG_RELEASE:=1
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://github.com/erikd/libsndfile.git
PKG_SOURCE_DATE:=2019-02-07
PKG_SOURCE_VERSION:=1a87c443fe37bd67c8d1e2d2b4c8b0291806eb90
PKG_MIRROR_HASH:=bb6fc0d755f4a0a346109f239c8efbdfb2257f03266999c5b67f241159a07e32
PKG_LICENSE:=LGPLv2.1
PKG_LICENSE_FILES:=COPYING
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/cmake.mk
define Package/libsndfile
SECTION:=libs
CATEGORY:=Libraries
TITLE:=Library for reading/writing audio files
URL:=http://www.mega-nerd.com/libsndfile/
MAINTAINER:=Peter Wagner <tripolar@gmx.at>
endef
define Package/libsndfile/description
libsndfile is a library of C routines for reading and writing files
containing sampled audio data.
endef
CMAKE_OPTIONS += \
-DBUILD_SHARED_LIBS:BOOL=ON \
-DENABLE_EXTERNAL_LIBS:BOOL=FALSE \
-DBUILD_REGTEST:BOOL=FALSE
TARGET_CFLAGS += $(FPIC)
define Build/InstallDev
$(INSTALL_DIR) $(1)
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
endef
define Package/libsndfile/install
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libsndfile.so.* $(1)/usr/lib/
endef
$(eval $(call BuildPackage,libsndfile))