mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-08 06:32:59 -04:00
39 lines
743 B
Bash
39 lines
743 B
Bash
# Copyright 2023-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit meson
|
|
|
|
DESCRIPTION="xdg-desktop-portal backend for choosing files with your favorite file chooser"
|
|
HOMEPAGE="https://github.com/hunkyburrito/xdg-desktop-portal-termfilechooser"
|
|
SRC_URI="https://github.com/hunkyburrito/xdg-desktop-portal-termfilechooser/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
DEPEND="
|
|
sys-apps/xdg-desktop-portal
|
|
dev-libs/inih
|
|
|| (
|
|
sys-auth/elogind
|
|
sys-apps/systemd
|
|
sys-libs/basu
|
|
)
|
|
"
|
|
|
|
RDEPEND="
|
|
${DEPEND}
|
|
"
|
|
|
|
BDEPEND="app-text/scdoc"
|
|
|
|
src_install() {
|
|
dodoc Compatibility.md
|
|
|
|
meson_src_install
|
|
|
|
rm -r "${ED}/usr/share/${PN}/systemd" || die
|
|
}
|