blob: 5d69d2d80dbe588149a23467be0204e210ed3529 (
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 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() { :; }
|