mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-19 15:59:00 -04:00
Signed-off-by: Lucio Sauer <watermanpaint@posteo.net> Signed-off-by: Julien Roy <julien@jroy.ca>
25 lines
477 B
Bash
25 lines
477 B
Bash
# Copyright 2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit xdg desktop
|
|
|
|
DESCRIPTION="A handler for XKCD urls"
|
|
HOMEPAGE="https://github.com/mazunki/xkcd"
|
|
SRC_URI="https://github.com/mazunki/xkcd/archive/refs/tags/v${PV}.tar.gz -> xkcd-${PV}.tar.gz"
|
|
|
|
S="${WORKDIR}/xkcd-${PV}"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
RDEPEND="x11-misc/xdg-utils"
|
|
|
|
src_install() {
|
|
dobin xkcd
|
|
domenu xkcd.desktop
|
|
doman xkcd.1
|
|
}
|