1
0
mirror of https://github.com/dguglielmi/sunny-overlay.git synced 2025-12-06 16:02:39 +01:00

gui-libs/pqmarble: new ebuild

This commit is contained in:
2024-08-21 21:50:42 +02:00
parent e8c3be84e0
commit c672bc42d2
3 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson vala
COMMIT_ID="f240b2ec7d5cdacb8fdcc553703420dc5101ffdb"
DESCRIPTION="PQMarble is a utility library for GNOME apps"
HOMEPAGE="https://gitlab.gnome.org/raggesilver/marble"
SRC_URI="
https://gitlab.gnome.org/raggesilver/marble/-/archive/${COMMIT_ID}/marble-${COMMIT_ID::-30}.tar.bz2
-> ${P}.tar.bz2
"
S="${WORKDIR}/${PN/pq}-${COMMIT_ID}"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="
>=gui-libs/gtk-4.12.0:4
"
RDEPEND="${DEPEND}"
BDEPEND="
${DEPEND}
"
src_prepare() {
vala_setup
default
}
src_configure() {
local emesonargs=(
-Dtests=false # There is no tests yet
)
meson_src_configure
}