blob: 8a99e7ea1021261002bc17940074e898aa1d9202 [file] [log] [blame]
# Copyright 2022 The ChromiumOS Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit dlc
DESCRIPTION="Handwriting el Language Pack for Chromium OS"
# Clients of Language Packs (Handwriting) need to update this path when new
# versions are available.
SRC_URI="gs://chromeos-localmirror/distfiles/languagepack-handwriting-el-${PV}.tar.xz"
LICENSE="BSD-Google"
SLOT="0"
KEYWORDS="*"
IUSE="dlc"
REQUIRED_USE="dlc"
# DLC variables.
# Allocate 4KB * 8750 = 35MB
DLC_PREALLOC_BLOCKS="8750"
# Enabled scaled design.
DLC_SCALED=true
S="${WORKDIR}"
src_unpack() {
local archive="${SRC_URI##*/}"
unpack ${archive}
}
src_install() {
# Setup DLC paths. We don't need any subdirectory inside the DLC path.
insinto "$(dlc_add_path /)"
# Install handwriting models for el.
doins compact.fst.local latin_indy.tflite qrnn.recospec.local
# This command packages the files into a DLC.
dlc_src_install
}