mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 15:13:31 -04:00
media-gfx/fontpreview: New package. Signed-off-by: Ronny (tastytea) Gutbrod <gentoo@tastytea.de>
27 lines
603 B
Bash
27 lines
603 B
Bash
# Copyright 2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
DESCRIPTION="Highly customizable and minimal font previewer written in bash"
|
|
HOMEPAGE="https://github.com/sdushantha/fontpreview"
|
|
SRC_URI="https://github.com/sdushantha/fontpreview/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="
|
|
x11-misc/xdotool
|
|
app-shells/fzf
|
|
virtual/imagemagick-tools
|
|
media-gfx/sxiv
|
|
"
|
|
|
|
src_prepare() {
|
|
sed -i 's#install:#install:\n\t@mkdir -p $(DESTDIR)$(BINDIR)#' Makefile \
|
|
|| die "Patching the Makefile failed."
|
|
|
|
default
|
|
}
|