Gentoo Archives: gentoo-commits

From: Lucas Barbieri <lucasbarbieri.c@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-sound/amberol/
Date: Sun, 01 Jan 2023 17:00:09
Message-Id: 1672592396.51e5da1535d6a04104d4e92d05907a9e4f4ccc12.lucasbarbieri.c@gentoo
1 commit: 51e5da1535d6a04104d4e92d05907a9e4f4ccc12
2 Author: Lucas Barbieri <lucasbarbieri.c <AT> gmail <DOT> com>
3 AuthorDate: Sun Jan 1 16:59:01 2023 +0000
4 Commit: Lucas Barbieri <lucasbarbieri.c <AT> gmail <DOT> com>
5 CommitDate: Sun Jan 1 16:59:56 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=51e5da15
7
8 media-sound/amberol: fix metadata installation dir
9
10 Signed-off-by: Lucas Barbieri <lucasbarbieri.c <AT> gmail.com>
11
12 media-sound/amberol/amberol-0.9.2.ebuild | 5 +++++
13 1 file changed, 5 insertions(+)
14
15 diff --git a/media-sound/amberol/amberol-0.9.2.ebuild b/media-sound/amberol/amberol-0.9.2.ebuild
16 index f7e55132b..7c4fa23f3 100644
17 --- a/media-sound/amberol/amberol-0.9.2.ebuild
18 +++ b/media-sound/amberol/amberol-0.9.2.ebuild
19 @@ -259,6 +259,11 @@ src_unpack() {
20 src_configure () {
21 # upstream redefines CARGO_HOME, pointing to eclass defined
22 ln -s "${WORKDIR}"/cargo_home "${S}"/cargo-home || die
23 +
24 + # upstream installs to /usr/share/appdata, fixing that
25 + sed -i 's/appdata/metainfo/g' "${S}"/data/meson.build
26 + mv "${S}"/data/io.bassi.Amberol.appdata.xml.in.in "${S}"/data/io.bassi.Amberol.metainfo.xml.in.in
27 +
28 meson_src_configure
29 }