logo

overlay

My (experimental) gentoo overlay
commit: 9957a6aff3a97f33d4de04e9ee66a4c58fdd1b6d
parent: d9eb1e65be28d3b04da5c4b4299f97940304bc85
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Tue, 18 Jun 2019 00:24:07 +0200

gui-apps/slurp: New Package

Diffstat:

Agui-apps/slurp/Manifest1+
Agui-apps/slurp/slurp-1.2.0.ebuild33+++++++++++++++++++++++++++++++++
2 files changed, 34 insertions(+), 0 deletions(-)

diff --git a/gui-apps/slurp/Manifest b/gui-apps/slurp/Manifest @@ -0,0 +1 @@ +DIST slurp-1.2.0.tar.gz 15317 BLAKE2B 92de74abb54b2d53334e0f0c5d08b0b50e9c4583eb192226e38fcefa07cce2265f808ce81c04170e65d3c1209fa263352e3d70cc0a7cf745ed5e18d57c4d3af6 SHA512 443cd497049a5128e80a48c7b2afcc555a8d58a5eacc2dc6207058a9a399bc9e9804c7bca8b010af63f8be99000c05245720bd3e8cca248a74d5aa63a7faf4f9 diff --git a/gui-apps/slurp/slurp-1.2.0.ebuild b/gui-apps/slurp/slurp-1.2.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2019 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit meson + +DESCRIPTION="Select a region in a Wayland compositor and print it to stdout" +HOMEPAGE="https://wayland.emersion.fr/slurp" +SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + x11-libs/cairo:= + dev-libs/wayland:= +" + +DEPEND=" + ${DEPEND} + app-text/scdoc +" + +src_configure() { + local emesonargs=( + "-Dwerror=false" + ) + + meson_src_configure +}