mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-20 12:33:40 -04:00
Closes: https://bugs.gentoo.org/935002 Closes: https://bugs.gentoo.org/935004 Closes: https://bugs.gentoo.org/935123 Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
18 lines
472 B
Bash
18 lines
472 B
Bash
# Copyright 2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
DESCRIPTION="Soothing pastel previews for the high-spirited!"
|
|
HOMEPAGE="https://github.com/catppuccin/catwalk"
|
|
SRC_URI="https://github.com/catppuccin/catwalk/releases/download/v${PV}/catwalk-x86_64-unknown-linux-gnu -> ${P}"
|
|
S="${WORKDIR}"
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
QA_PREBUILT="usr/bin/catwalk"
|
|
|
|
src_install() {
|
|
newbin "${DISTDIR}"/${P} catwalk
|
|
}
|