mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-10 20:18:41 -04:00
phosh-base/squeekboard is masked and will be removed soon. Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
23 lines
444 B
Bash
23 lines
444 B
Bash
# Copyright 2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
ALTERNATIVES=(
|
|
phosh-osk-stub:phosh-base/phosh-osk-stub
|
|
)
|
|
|
|
inherit app-alternatives
|
|
|
|
DESCRIPTION="sm.puri.OSK0.desktop symlinks"
|
|
KEYWORDS="~amd64"
|
|
|
|
src_install() {
|
|
local target="/usr/share/applications/sm.puri.OSK0.desktop"
|
|
|
|
case $(get_alternative) in
|
|
phosh-osk-stub)
|
|
dosym sm.puri.Phosh.OskStub.desktop "${target:?}";;
|
|
esac
|
|
}
|