mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-11 08:03:16 -04:00
ia64 has been removed from Gentoo. Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
26 lines
586 B
Bash
26 lines
586 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit font
|
|
|
|
DESCRIPTION="Pan-CJK OpenType/CFF mono font family"
|
|
HOMEPAGE="https://github.com/adobe-fonts/source-han-mono"
|
|
SRC_URI="https://github.com/adobe-fonts/${PN}/releases/download/${PV}/SourceHanMono.ttc -> ${P}.ttc"
|
|
S=${WORKDIR}
|
|
|
|
LICENSE="OFL-1.1"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos"
|
|
|
|
FONT_SUFFIX="ttc"
|
|
RESTRICT="binchecks strip"
|
|
|
|
BDEPEND="app-arch/unzip"
|
|
|
|
src_prepare() {
|
|
cp "${DISTDIR}"/${P}.ttc . || die
|
|
default
|
|
}
|