blob: f8ff8c341308d859b32996e4ff36b9f67d535e9b (
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
27
28
29
30
31
32
33
34
35
|
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
FONT_SUFFIX="ttf"
inherit font readme.gentoo-r1
DESCRIPTION="A font for better emoji and unicode support"
HOMEPAGE="https://www.joypixels.com/"
SRC_URI="https://cdn.joypixels.com/distributions/gentoo-linux/font/${PV}/joypixels-android.ttf -> ${P}.ttf"
S="${WORKDIR}"
#https://cdn.joypixels.com/distributions/gentoo-linux/appendix/joypixels-license-appendix.txt
#https://cdn.joypixels.com/distributions/gentoo-linux/license/free-license.txt
LICENSE="JoyPixels"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
RESTRICT="bindist mirror"
FONT_CONF=( "${FILESDIR}"/99-joypixels.conf )
DOC_CONTENTS="Free for personal/education use only,
premium/enterprise license required for any other use:
https://www.joypixels.com/licenses"
src_prepare() {
default
cp "${DISTDIR}"/${P}.ttf "${S}"/${P}.ttf || die
}
src_install() {
font_src_install
readme.gentoo_create_doc
}
|