mirror of
https://github.com/openwrt/packages.git
synced 2026-05-02 16:25:39 +04:00
37aeee740c
Fixes CVEs: CVE-2017-6892 CVE-2017-8361 CVE-2017-8362 CVE-2017-8363 CVE-2017-8365 CVE-2017-12562 CVE-2017-14245 CVE-2017-14246 CVE-2017-14634 CVE-2018-13139 CVE-2018-13419 Signed-off-by: Peter Wagner <tripolar@gmx.at>
65 lines
1.5 KiB
Makefile
65 lines
1.5 KiB
Makefile
#
|
|
# Copyright (C) 2007-2010 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_VERSION:=b4bd397ca74f4c72b9cabaae66fef0c3d5a8c527
|
|
PKG_MIRROR_HASH:=8e7cb3da240888c9c0e17d066e904d720c94dd379d3e5105df69797e2b321016
|
|
|
|
PKG_LICENSE:=LGPLv2.1
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
PKG_INSTALL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.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
|
|
|
|
CONFIGURE_ARGS+= \
|
|
--disable-alsa \
|
|
--disable-external-libs \
|
|
--disable-sqlite
|
|
|
|
CONFIGURE_VARS += \
|
|
ac_cv_sys_file_offset_bits=64 \
|
|
ac_cv_sys_large_files=yes \
|
|
ac_cv_sys_largefile_CFLAGS=-D_LARGFILE_SOURCE \
|
|
ac_cv_sys_largefile_LDFLAGS= \
|
|
ac_cv_sys_largefile_LIBS= \
|
|
ac_cv_sys_largefile_source=yes
|
|
|
|
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))
|