portage-overlay

personal portage ebuild repository
git clone anongit@rnpnr.xyz:portage-overlay.git
Log | Files | Refs | Feed | README

Commit: d5d88855efe53abe0dacd74ffaf40e5bacc86ac6
Parent: b0897d3cb1bffafc7aeaf40225f48002ea5b6664
Author: Randy Palamar
Date:   Mon, 12 Jul 2021 10:09:55 -0600

add media-sound/opustags

Diffstat:
Amedia-sound/opustags/opustags-9999.ebuild | 24++++++++++++++++++++++++
1 file changed, 24 insertions(+), 0 deletions(-)

diff --git a/media-sound/opustags/opustags-9999.ebuild b/media-sound/opustags/opustags-9999.ebuild @@ -0,0 +1,24 @@ +EAPI=7 + +inherit git-r3 cmake + +DESCRIPTION="View and edit opus tags" +HOMEPAGE="https://github.com/fmang/opustags" +EGIT_REPO_URI="https://github.com/fmang/opustags.git" + +LICENSE="BSD" +SLOT=0 +IUSE="+static" + +DEPENDS="media-libs/libogg" + +src_configure() { + default + + use static && LDFLAGS="${LDFLAGS} -s -static" + + local mycmakeargs=( + -DCMAKE_INSTALL_PREFIX="${EPREFIX}${LOCAL_PREFIX}" + ) + cmake_src_configure +}