blob: 5334900460ed8b62c097dad44b5e25d4798994c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit git-r3 meson
DESCRIPTION="Application/browser chooser"
HOMEPAGE="https://apps.gnome.org/app/re.sonny.Junction/"
EGIT_REPO_URI="https://github.com/sonnyp/Junction.git"
if [[ ${PV} != *9999 ]]; then
EGIT_COMMIT="v${PV}"
KEYWORDS="~amd64"
fi
LICENSE="GPL-3+"
SLOT="0"
src_configure() {
meson_src_configure \
--datadir=/usr/share
}
|