media-sound/tagparser: new ebuild

This commit is contained in:
2024-01-22 13:39:51 -08:00
parent d1ce8675ee
commit 59dbc7be14
2 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST tagparser-12.1.0.tar.gz 347256 BLAKE2B 3df71a38a7477aee9dddfb123c8886a63770ee6bedf38581e843d9eed25390843d7bec22e6f473c67de6ef67812ad46462a92f8d429dbebeb73f7cf05e687eaf SHA512 b8e29097dd03da1250ebc3a5a4a1231ec15534dbb9e90b40bfbfab9580b2c681278aa1e0ba3b759a24b529ff365bd2b5428d345fb505f1caa6270bf1b4aa8d44

View File

@@ -0,0 +1,26 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="C++ library for reading and writing MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska tags"
HOMEPAGE="https://github.com/Martchus/tagparser"
SRC_URI="https://github.com/Martchus/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="amd64"
IUSE=""
RDEPEND="dev-util/cpp-utilities"
DEPEND="${RDEPEND}"
src_configure() {
local mycmakeargs=(
-DCMAKE_BUILD_TYPE=Release
)
cmake_src_configure
}