mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Michael Olbrich <m.olbrich@pengutronix.de>
To: ptxdist@pengutronix.de
Cc: Ladislav Michl <oss-lists@triops.cz>
Subject: Re: [ptxdist] [APPLIED] libtag: new package
Date: Wed, 10 Jan 2024 17:57:38 +0100	[thread overview]
Message-ID: <20240110165738.4191596-1-m.olbrich@pengutronix.de> (raw)
In-Reply-To: <ZY6ivzhpS_yoBGJl@lenoch>

Thanks, applied as 82559a70b650fdea26cb7cb3ca61f828826dea05.

Michael

[sent from post-receive hook]

On Wed, 10 Jan 2024 17:57:38 +0100, Ladislav Michl <oss-lists@triops.cz> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <ZY6ivzhpS_yoBGJl@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/libtag.in b/rules/libtag.in
> new file mode 100644
> index 000000000000..1e703a201734
> --- /dev/null
> +++ b/rules/libtag.in
> @@ -0,0 +1,18 @@
> +## SECTION=multimedia_libs
> +
> +menuconfig LIBTAG
> +	tristate
> +	prompt "libtag                        "
> +	select HOST_CMAKE
> +	select ZLIB	if LIBTAG_ZLIB
> +	help
> +	  A library for reading and editing the meta-data of several
> +	  popular audio formats.
> +
> +if LIBTAG
> +
> +config LIBTAG_ZLIB
> +	bool
> +	prompt "zlib support"
> +
> +endif
> diff --git a/rules/libtag.make b/rules/libtag.make
> new file mode 100644
> index 000000000000..8d26a56daabd
> --- /dev/null
> +++ b/rules/libtag.make
> @@ -0,0 +1,60 @@
> +# -*-makefile-*-
> +#
> +# Copyright (C) 2023 by Ladislav Michl <ladis@linux-mips.org>
> +#
> +# For further information about the PTXdist project and license conditions
> +# see the README file.
> +#
> +
> +#
> +# We provide this package
> +#
> +PACKAGES-$(PTXCONF_LIBTAG) += libtag
> +
> +#
> +# Paths and names
> +#
> +LIBTAG_VERSION		:= 1.13.1
> +LIBTAG_MD5		:= 2fe6089da73ad414aa1b982b83415362
> +LIBTAG			:= taglib-$(LIBTAG_VERSION)
> +LIBTAG_SUFFIX		:= tar.gz
> +LIBTAG_URL		:= https://taglib.org/releases/$(LIBTAG).$(LIBTAG_SUFFIX)
> +LIBTAG_SOURCE		:= $(SRCDIR)/$(LIBTAG).$(LIBTAG_SUFFIX)
> +LIBTAG_DIR		:= $(BUILDDIR)/$(LIBTAG)
> +LIBTAG_LICENSE		:= LGPL-2.1-or-later
> +LIBTAG_LICENSE_FILES	:= \
> +	file://COPYING.LGPL;md5=4fbd65380cdd255951079008b364516c \
> +	file://COPYING.MPL;md5=bfe1f75d606912a4111c90743d6c7325
> +
> +# ----------------------------------------------------------------------------
> +# Prepare
> +# ----------------------------------------------------------------------------
> +
> +LIBTAG_CONF_TOOL	:= cmake
> +LIBTAG_CONF_OPT		:= \
> +	$(CROSS_CMAKE_USR) \
> +	-DBUILD_SHARED_LIBS=ON \
> +	-DBUILD_TESTING=OFF \
> +	-DBUILD_EXAMPLES=OFF \
> +	-DWITH_ZLIB=$(call ptx/onoff, PTXCONF_LIBTAG_ZLIB)
> +
> +# ----------------------------------------------------------------------------
> +# Target-Install
> +# ----------------------------------------------------------------------------
> +
> +$(STATEDIR)/libtag.targetinstall:
> +	@$(call targetinfo)
> +
> +	@$(call install_init, libtag)
> +	@$(call install_fixup, libtag,PRIORITY,optional)
> +	@$(call install_fixup, libtag,SECTION,base)
> +	@$(call install_fixup, libtag,AUTHOR,"Ladislav Michl <ladis@linux-mips.org>")
> +	@$(call install_fixup, libtag,DESCRIPTION,missing)
> +
> +	$(call install_lib, libtag, 0, 0, 0644, libtag)
> +
> +	@$(call install_finish, libtag)
> +
> +	@$(call touch)
> +
> +# vim: syntax=make



  reply	other threads:[~2024-01-10 17:00 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-12-29 10:37 [ptxdist] [PATCH 0/9] Add a few multimedia libraries Ladislav Michl
2023-12-29 10:38 ` [ptxdist] [PATCH 1/9] dav1d: new package Ladislav Michl
2024-01-10 16:57   ` [ptxdist] [APPLIED] " Michael Olbrich
2023-12-29 10:40 ` [ptxdist] [PATCH 2/9] libass: " Ladislav Michl
2024-01-10 16:57   ` [ptxdist] [APPLIED] " Michael Olbrich
2023-12-29 10:41 ` [ptxdist] [PATCH 3/9] libcdio: " Ladislav Michl
2024-01-10 16:57   ` [ptxdist] [APPLIED] " Michael Olbrich
2023-12-29 10:42 ` [ptxdist] [PATCH 4/9] gst-plugins-ugly1: unbreak cdio support Ladislav Michl
2024-01-10 16:57   ` [ptxdist] [APPLIED] " Michael Olbrich
2023-12-29 10:43 ` [ptxdist] [PATCH 5/9] libtag: new package Ladislav Michl
2024-01-10 16:57   ` Michael Olbrich [this message]
2023-12-29 10:43 ` [ptxdist] [PATCH 6/9] gst-plugins-good1: unbreak libtag support Ladislav Michl
2024-01-10 16:57   ` [ptxdist] [APPLIED] " Michael Olbrich
2023-12-29 10:44 ` [ptxdist] [PATCH 7/9] libdvdcss: new package Ladislav Michl
2024-01-10 16:57   ` [ptxdist] [APPLIED] " Michael Olbrich
2023-12-29 10:45 ` [ptxdist] [PATCH 8/9] libdvdnav: " Ladislav Michl
2024-01-10 16:57   ` [ptxdist] [APPLIED] " Michael Olbrich
2023-12-29 10:46 ` [ptxdist] [PATCH 9/9] libdvdread: " Ladislav Michl
2024-01-10 16:57   ` [ptxdist] [APPLIED] " Michael Olbrich

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240110165738.4191596-1-m.olbrich@pengutronix.de \
    --to=m.olbrich@pengutronix.de \
    --cc=oss-lists@triops.cz \
    --cc=ptxdist@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox