mirror of
https://github.com/gentoo-mirror/gentoo-zh.git
synced 2025-04-10 11:58:43 -04:00
24 lines
572 B
Bash
24 lines
572 B
Bash
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="Fcitx 5 Pinyin Dictionary from zh.moegirl.org.cn"
|
|
HOMEPAGE="https://github.com/outloudvi/mw2fcitx"
|
|
SRC_URI="https://github.com/outloudvi/mw2fcitx/releases/download/${PV}/moegirl.dict -> ${P}.dict"
|
|
|
|
LICENSE="Unlicense"
|
|
SLOT="5"
|
|
KEYWORDS="~amd64 ~mips ~x86"
|
|
|
|
RDEPEND="app-i18n/fcitx:5"
|
|
|
|
S="${DISTDIR}"
|
|
|
|
src_install(){
|
|
DICT_PATH="/usr/share/fcitx5/pinyin/dictionaries"
|
|
insinto ${DICT_PATH}
|
|
doins ${P}.dict
|
|
fperms 0644 "${DICT_PATH}/${P}.dict"
|
|
}
|