mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 17:09:10 -07:00
gui-apps/slurp: add 1.6.0
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST slurp-1.5.0.tar.gz 18790 BLAKE2B 8d2fd5274bed2d552dc5a3d1359927467120f82840e636d835f48b12a04a2c170df79fe3979d82e0a48fd5e082cd874cfba82251e6054c1323745b48a28b19c0 SHA512 77c4efdaa4ac411f43c598e5d654bcf61f969a5e403df6110757a7b217e02d55d0ba797729e42f8219d3bba79f58bcb36746799de765d3b25f301bf9ac3c1888
|
||||
DIST slurp-1.6.0.tar.gz 19779 BLAKE2B 5b18b88c5e668ff24bcee6b85923eb066f4a8c3115ed05e2c017e139f5cc9f62085581a7a5cc217ddd6d6e74923015ed03dbc4236743006a552752b867bd0124 SHA512 eecfc22513e81f4cd3e0c05cd1a39f8a0624e93cb5258e2558882756b3ecb6c986f23aca7ef9c7754df5536f7fc90c281f9a21d02947edf3e267a501cbc91c07
|
||||
|
||||
40
gui-apps/slurp/slurp-1.6.0.ebuild
Normal file
40
gui-apps/slurp/slurp-1.6.0.ebuild
Normal file
@@ -0,0 +1,40 @@
|
||||
# Copyright 1999-2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit meson
|
||||
|
||||
DESCRIPTION="Select a region in a Wayland compositor and print it to the standard output"
|
||||
HOMEPAGE="https://github.com/emersion/slurp"
|
||||
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
IUSE="+man"
|
||||
|
||||
DEPEND="
|
||||
>=dev-libs/wayland-protocols-1.14
|
||||
dev-libs/wayland
|
||||
x11-libs/cairo
|
||||
x11-libs/libxkbcommon
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND="
|
||||
dev-util/wayland-scanner
|
||||
man? ( app-text/scdoc )
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
local emesonargs=(
|
||||
$(meson_feature man man-pages)
|
||||
)
|
||||
meson_src_configure
|
||||
}
|
||||
Reference in New Issue
Block a user