mirror of
https://github.com/gentoo-mirror/gentoo-zh.git
synced 2025-04-10 11:58:43 -04:00
30 lines
710 B
Bash
30 lines
710 B
Bash
# Copyright 2023-2024 Gentoo Authors
|
||
# Distributed under the terms of the GNU General Public License v2
|
||
|
||
EAPI=8
|
||
|
||
inherit font unpacker
|
||
|
||
DESCRIPTION="遍黑体项目(Plangothic Project)"
|
||
HOMEPAGE="https://github.com/Fitzgerald-Porthmouth-Koenigsegg/Plangothic-Project"
|
||
SRC_URI="
|
||
https://github.com/Fitzgerald-Porthmouth-Koenigsegg/Plangothic-Project/archive/refs/tags/V${PV}.tar.gz -> ${P}.tar.gz
|
||
"
|
||
S="${WORKDIR}/Plangothic-Project-${PV}"
|
||
|
||
LICENSE="Plangothic"
|
||
SLOT="0"
|
||
KEYWORDS="~amd64 ~x86"
|
||
IUSE="
|
||
+allideo
|
||
fallback
|
||
"
|
||
|
||
FONT_SUFFIX="ttf"
|
||
|
||
src_install() {
|
||
use allideo || rm "PlangothicP1-Regular (allideo).ttf" || die
|
||
use fallback || rm "PlangothicP1-Regular (fallback).ttf" || die
|
||
font_src_install
|
||
}
|