mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 03:10:15 -04:00
fixes the following pkgchek warnings:
app-misc/walld
StaticSrcUri: version 1.4.4: '1.4.4' in SRC_URI, replace with ${PV}
StaticSrcUri: version 1.4.4: 'walld-1.4.4' in SRC_URI, replace with ${P}
Signed-off-by: ingenarel <ingenarelitems@gmail.com>
22 lines
545 B
Bash
22 lines
545 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit optfeature meson
|
|
|
|
DESCRIPTION="A Wallpaper daemon"
|
|
HOMEPAGE="https://github.com/Dotz0cat/walld"
|
|
SRC_URI="https://github.com/Dotz0cat/walld/archive/refs/tags/$PV.tar.gz -> walld-$PV.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
|
|
|
|
DEPEND="dev-libs/libevent media-gfx/feh dev-libs/libconfig media-gfx/imagemagick"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
pkg_postinst() {
|
|
optfeature "auto reload Xresources" x11-apps/xrdb
|
|
}
|