-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e8c3be8
commit c672bc4
Showing
3 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST pqmarble-2.0_pre20230311.tar.bz2 18211 BLAKE2B d1863e8d26e16883eb0a0ac4d847528ef02f41c926d47ae6a42ee60931c808afc1ca44ef18bf45fb3b973b73d6a5d27102ce540a72ea3cba27a050a5c96d2a5e SHA512 afac16f5c609265cd66161eb40372882f546c0fac0a78bee5bbdf9bfbc675889100f95c6ff387dbede0e8481e6604b77045e6187c8ac25a340ffe803deb2abe0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
<name>David GUGLIELMI</name> | ||
</maintainer> | ||
<upstream> | ||
<remote-id type="gnome-gitlab">raggesilver/marble</remote-id> | ||
</upstream> | ||
</pkgmetadata> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} |