0
0
mirror of https://github.com/openwrt/packages.git synced 2025-07-23 20:41:38 +00:00
Files
packages/libs/libsndfile/Makefile
krant 7f34aac40c libsndfile: update to 1.2.2
- Update package URL to the official one
- Update source URL to the official one
- Modernize CMake options
- Fixup pkgconfig file
- Enable mpg123 support per users request (+7kB)

Signed-off-by: krant <aleksey.vasilenko@gmail.com>
2024-02-04 16:25:51 -08:00

59 lines
1.5 KiB
Makefile

#
# Copyright (C) 2007-2019 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_VERSION:=1.2.2
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_SOURCE_URL:=https://github.com/libsndfile/libsndfile/releases/download/$(PKG_VERSION)
PKG_HASH:=3799ca9924d3125038880367bf1468e53a1b7e3686a934f098b7e1d286cdb80e
PKG_MAINTAINER:=Peter Wagner <tripolar@gmx.at>
PKG_LICENSE:=LGPLv2.1
PKG_LICENSE_FILES:=COPYING
PKG_CPE_ID:=cpe:/a:libsndfile_project:libsndfile
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:=https://libsndfile.github.io/libsndfile/
DEPENDS:=+lame-lib +libmpg123
endef
define Package/libsndfile/description
libsndfile is a library of C routines for reading and writing files
containing sampled audio data.
endef
CMAKE_OPTIONS += \
-DENABLE_MPEG=ON \
-DBUILD_SHARED_LIBS=ON \
-DENABLE_EXTERNAL_LIBS=OFF
TARGET_CFLAGS += $(FPIC)
define Build/InstallDev
$(INSTALL_DIR) $(1)
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
$(SED) 's,/usr/include,$$$${prefix}/include,g' $(1)/usr/lib/pkgconfig/sndfile.pc
$(SED) 's,/usr/lib,$$$${exec_prefix}/lib,g' $(1)/usr/lib/pkgconfig/sndfile.pc
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))