diff options
author | Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in> | 2024-02-04 12:23:48 +0500 |
---|---|---|
committer | Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in> | 2024-02-05 00:11:01 +0500 |
commit | 6f44d5a41b3e7f12000141bd5af035604b3f2f4e (patch) | |
tree | b496e74d08836c1c4e53f90380f46e0cff3e7ddf /phosh-base/phosh-tour/phosh-tour-0.35.0.ebuild | |
parent | phosh-base/phosh-shell: rename gui-wm/phosh (diff) | |
download | guru-6f44d5a41b3e7f12000141bd5af035604b3f2f4e.tar.gz guru-6f44d5a41b3e7f12000141bd5af035604b3f2f4e.tar.bz2 guru-6f44d5a41b3e7f12000141bd5af035604b3f2f4e.zip |
phosh-base/phosh-tour: rename gui-apps/phosh-tour
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
Diffstat (limited to 'phosh-base/phosh-tour/phosh-tour-0.35.0.ebuild')
-rw-r--r-- | phosh-base/phosh-tour/phosh-tour-0.35.0.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/phosh-base/phosh-tour/phosh-tour-0.35.0.ebuild b/phosh-base/phosh-tour/phosh-tour-0.35.0.ebuild new file mode 100644 index 000000000..b664e5288 --- /dev/null +++ b/phosh-base/phosh-tour/phosh-tour-0.35.0.ebuild @@ -0,0 +1,49 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome2-utils meson xdg + +MY_P="${PN}-v${PV}" +DESCRIPTION="Introduction to phosh on smartphones" +HOMEPAGE="https://gitlab.gnome.org/guidog/phosh-tour" +SRC_URI="https://gitlab.gnome.org/guidog/${PN}/-/archive/v${PV}/${MY_P}.tar.bz2" +S="${WORKDIR}/${MY_P}" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=" + dev-libs/glib:2 + >=gui-libs/gtk-4.4:4 + >=gui-libs/libadwaita-1.1:1 +" +RDEPEND="${DEPEND}" +BDEPEND="sys-devel/gettext" + +QA_DESKTOP_FILE="usr/share/applications/mobi.phosh.PhoshTour.desktop" + +src_configure() { + local emesonargs=( + -Dbrand="smartphone" + -Dvendor="Gentoo" + ) + meson_src_configure +} + +src_test() { + # No useful tests + : +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} |