blob: aa3bba1c6a81a8d4707cbc9375dbef82a49adb0c (
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 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit font
DESCRIPTION="Set of matching libre/open fonts funded by Canonical"
HOMEPAGE="https://design.ubuntu.com/font/"
SRC_URI="https://assets.ubuntu.com/v1/fad7939b-${P}.zip -> ${P}.zip"
LICENSE="UbuntuFontLicense-1.0"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv x86"
IUSE=""
BDEPEND="app-arch/unzip"
DOCS=( CONTRIBUTING.txt FONTLOG.txt README.txt )
FONT_SUFFIX="ttf"
src_prepare() {
default
rm Ubuntu-M*.ttf || die
}
|