# SPDX-Identifier-License: GPL-3.0-only # # Copyright (C) 2020 Lean # Copyright (C) 2021 ImmortalWrt.org include $(TOPDIR)/rules.mk PKG_NAME:=alac PKG_VERSION:=0.0.7 PKG_RELEASE:=2 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://github.com/mikebrady/alac.git PKG_SOURCE_DATE:=2019-02-13 PKG_SOURCE_VERSION:=5d6d836ee5b025a5e538cfa62c88bc5bced506ed PKG_MIRROR_HASH:=a7c08875cf4a3ea35b2a6ea1eabf5b06cce65f52afe2f5f88ffbd204d453feb6 PKG_LICENSE:=Apache-2.0 PKG_LICENSE_FILES:=LICENSE PKG_MAINTAINER:=Tianling Shen PKG_FIXUP:=autoreconf PKG_REMOVE_FILES:=autogen.sh PKG_BUILD_PARALLEL:=1 PKG_INSTALL:=1 include $(INCLUDE_DIR)/package.mk define Package/libalac SECTION:=libs CATEGORY:=Libraries TITLE:=The Apple Lossless Audio Codec Library URL:=https://github.com/mikebrady/alac DEPENDS:=+libstdcpp endef define Package/libalac/description The Apple Lossless Audio Codec (ALAC) is an audio codec developed by Apple and supported on iPhone, iPad, most iPods, Mac and iTunes. ALAC is a data compression method which reduces the size of audio files with no loss of information. A decoded ALAC stream is bit-for-bit identical to the original uncompressed audio file. endef define Build/InstallDev $(INSTALL_DIR) $(1)/usr/lib $(CP) $(PKG_INSTALL_DIR)/usr/lib/libalac.so* $(1)/usr/lib/ $(INSTALL_DIR) $(1)/usr/lib/pkgconfig $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/alac.pc $(1)/usr/lib/pkgconfig/ $(INSTALL_DIR) $(1)/usr/include $(CP) $(PKG_INSTALL_DIR)/usr/include/alac $(1)/usr/include/ endef define Package/libalac/install $(INSTALL_DIR) $(1)/usr/lib $(CP) $(PKG_INSTALL_DIR)/usr/lib/libalac.so* $(1)/usr/lib/ endef $(eval $(call BuildPackage,libalac))