261c5894b0
Release notes: https://mail.kde.org/pipermail/taglib-devel/2023-July/003066.html Changelog: https://taglib.org/#taglib-1131-release---jul-1-2023 Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
28 lines
695 B
Makefile
28 lines
695 B
Makefile
################################################################################
|
|
#
|
|
# taglib
|
|
#
|
|
################################################################################
|
|
|
|
TAGLIB_VERSION = 1.13.1
|
|
TAGLIB_SITE = http://taglib.github.io/releases
|
|
TAGLIB_INSTALL_STAGING = YES
|
|
TAGLIB_LICENSE = LGPL-2.1 or MPL-1.1
|
|
TAGLIB_LICENSE_FILES = COPYING.LGPL COPYING.MPL
|
|
TAGLIB_CPE_ID_VENDOR = taglib
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
TAGLIB_DEPENDENCIES += zlib
|
|
TAGLIB_CONF_OPTS += -DWITH_ZLIB=ON
|
|
else
|
|
TAGLIB_CONF_OPTS += -DWITH_ZLIB=OFF
|
|
endif
|
|
|
|
define TAGLIB_REMOVE_DEVFILE
|
|
rm -f $(TARGET_DIR)/usr/bin/taglib-config
|
|
endef
|
|
|
|
TAGLIB_POST_INSTALL_TARGET_HOOKS += TAGLIB_REMOVE_DEVFILE
|
|
|
|
$(eval $(cmake-package))
|