blob: 3f6c50fa297a4a8d926025dfec12e54bdc2f538d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 2023-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
FONT_SUFFIX="otf"
inherit font
DESCRIPTION="Intel One Mono font family"
HOMEPAGE="https://github.com/intel/intel-one-mono"
SRC_URI="https://github.com/intel/intel-one-mono/releases/download/V${PV}/otf.zip -> ${P}.zip"
S="${WORKDIR}/otf"
LICENSE="OFL-1.1"
SLOT="0"
KEYWORDS="~amd64"
RESTRICT="binchecks strip"
BDEPEND="
app-arch/unzip
"
src_compile() { :; }
|