mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-11 08:03:16 -04:00
Signed-off-by: Lucio Sauer <watermanpaint@posteo.net> Signed-off-by: Julien Roy <julien@jroy.ca>
34 lines
618 B
Bash
34 lines
618 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
MY_PN="FiraGO"
|
|
MY_PV="$(ver_rs 1 '')"
|
|
MY_P="Download_Folder_${MY_PN}_${MY_PV}"
|
|
FONT_SUFFIX=otf
|
|
inherit font
|
|
|
|
DESCRIPTION="A continuation of FiraSans"
|
|
HOMEPAGE="https://bboxtype.com/typefaces/FiraGO"
|
|
SRC_URI="https://bboxtype.com/downloads/${MY_PN}/${MY_P}.zip"
|
|
|
|
S="${WORKDIR}/${MY_P}/Fonts"
|
|
|
|
LICENSE="OFL-1.1"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
DEPEND="
|
|
${RDEPEND}
|
|
app-arch/unzip
|
|
"
|
|
DOCS=(
|
|
${MY_PN}_${MY_PV}_CHANGE_LOG.rtf
|
|
)
|
|
|
|
src_prepare() {
|
|
find -type f -path '*/*.[ot]tf' -exec mv -t . {} +
|
|
default
|
|
}
|