gui-libs/libsfdo: add 0.1.4

Signed-off-by: Vincent Ahluwalia <vincentahluwalia@protonmail.com>
This commit is contained in:
Vincent Ahluwalia
2025-04-04 15:28:37 +02:00
parent 34a6fa694f
commit ddea02952d
2 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
DESCRIPTION="A collection of libraries which implement some freedesktop.org specifications"
HOMEPAGE="https://gitlab.freedesktop.org/vyivel/libsfdo"
SRC_URI="https://gitlab.freedesktop.org/vyivel/libsfdo/-/archive/v${PV}/libsfdo-v${PV}.tar.bz2"
# necessary because packaged dir contains a v before version number
S="${WORKDIR}/${PN}-v${PV}"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE="examples test"
RESTRICT="!test? ( test )"
BDEPEND="
virtual/pkgconfig
"
src_configure() {
local emesonargs=(
$(meson_use examples)
$(meson_use test tests)
)
meson_src_configure
}