27 lines
623 B
Bash
27 lines
623 B
Bash
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
inherit font
|
|
|
|
DESCRIPTION="Monospaced font with programming ligatures"
|
|
HOMEPAGE="https://github.com/tonsky/FiraCode"
|
|
SRC_URI="https://github.com/tonsky/FiraCode/archive/${PV}.tar.gz -> ${P}.tar.gz https://github.com/tonsky/FiraCode/files/412440/FiraCode-Regular-Symbol.zip"
|
|
|
|
LICENSE="OFL-1.1"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
|
|
IUSE=""
|
|
|
|
S="${WORKDIR}/FiraCode-${PV}"
|
|
FONT_S="${S}/distr/otf"
|
|
FONT_SUFFIX="otf"
|
|
|
|
DOCS="README.md"
|
|
|
|
src_prepare() {
|
|
mv "${WORKDIR}"/*.otf "${FONT_S}" || die
|
|
|
|
default
|
|
}
|