diff options
author | Julien Roy <julien@jroy.ca> | 2022-12-06 17:41:47 -0500 |
---|---|---|
committer | Julien Roy <julien@jroy.ca> | 2022-12-06 17:41:47 -0500 |
commit | 27d06f49bc60ea15ea19f92167ff042feaff5f1e (patch) | |
tree | d073357a6f52381b67e58e5864fef6ec7986dd96 /gui-apps/grimblast/grimblast-2022.10.13.ebuild | |
parent | 747c42059b44b4bfb2727780eb3690d58e45babc (diff) | |
download | MrRoy-Overlay-27d06f49bc60ea15ea19f92167ff042feaff5f1e.tar.gz MrRoy-Overlay-27d06f49bc60ea15ea19f92167ff042feaff5f1e.tar.bz2 MrRoy-Overlay-27d06f49bc60ea15ea19f92167ff042feaff5f1e.zip |
gui-apps/grimblast: new package (for wayland-desktop repository)
Diffstat (limited to 'gui-apps/grimblast/grimblast-2022.10.13.ebuild')
-rw-r--r-- | gui-apps/grimblast/grimblast-2022.10.13.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/gui-apps/grimblast/grimblast-2022.10.13.ebuild b/gui-apps/grimblast/grimblast-2022.10.13.ebuild new file mode 100644 index 0000000..fa72945 --- /dev/null +++ b/gui-apps/grimblast/grimblast-2022.10.13.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +COMMIT="dafb86d6d3adb421e788f0eaeecdf09c497a14e8" +DESCRIPTION="A helper for screenshots within hyprland" +HOMEPAGE="https://github.com/hyprwm/contrib/" + +if [[ ${PV} = 9999* ]]; then + SRC_URI="ftp://foo.example.org/${P}.tar.gz" + inherit git-r3 +else + SRC_URI="https://github.com/hyprwm/contrib/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="MIT" +SLOT="0" + +RDEPEND=" + app-misc/jq + gui-apps/grim + gui-apps/slurp + gui-apps/wl-clipboard + gui-wm/hyprland + x11-libs/libnotify +" + +DEPEND="${RDEPEND}" + +BDEPEND="" + +S="${WORKDIR}/contrib-${COMMIT}/${PN}" + +src_install() { + dodoc grimblast.1 + dobin grimblast +} |