mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-10 20:18:41 -04:00
Manually went through some entries for `pkgcheck scan -c VariableOrderCheck`. Signed-off-by: Lucio Sauer <watermanpaint@posteo.net>
27 lines
540 B
Bash
27 lines
540 B
Bash
# Copyright 2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit meson
|
|
|
|
DESCRIPTION="Gradually dim the screen."
|
|
HOMEPAGE="https://git.sr.ht/~emersion/chayang"
|
|
SRC_URI="https://git.sr.ht/~emersion/chayang/archive/v${PV}.tar.gz -> ${PN}-${PV}.tar.gz"
|
|
|
|
S="${WORKDIR}/${PN}-v${PV}"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RESTRICT="mirror"
|
|
|
|
RDEPEND="dev-libs/wayland"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="
|
|
>=dev-libs/wayland-protocols-1.14
|
|
>=dev-util/wayland-scanner-1.14.91
|
|
virtual/pkgconfig
|
|
"
|