xref: /aosp_15_r20/external/hyphenation-patterns/TeX/la/Android.bp (revision 92a653552b93b47109930ab8dfdbe79e1a46ab29)
1*92a65355Syangbill// Copyright 2015 The Android Open Source Project
2*92a65355Syangbill//
3*92a65355Syangbill// Licensed under the Apache License, Version 2.0 (the "License");
4*92a65355Syangbill// you may not use this file except in compliance with the License.
5*92a65355Syangbill// You may obtain a copy of the License at
6*92a65355Syangbill//
7*92a65355Syangbill//      http://www.apache.org/licenses/LICENSE-2.0
8*92a65355Syangbill//
9*92a65355Syangbill// Unless required by applicable law or agreed to in writing, software
10*92a65355Syangbill// distributed under the License is distributed on an "AS IS" BASIS,
11*92a65355Syangbill// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12*92a65355Syangbill// See the License for the specific language governing permissions and
13*92a65355Syangbill// limitations under the License.
14*92a65355Syangbill
15*92a65355Syangbill// TODO: we have data for Liturgical Latin, but there is no standard BCP 47 tag
16*92a65355Syangbill// for it, so we don't build it.
17*92a65355Syangbill
18*92a65355Syangbillpackage {
19*92a65355Syangbill    default_applicable_licenses: [
20*92a65355Syangbill        "external_hyphenation_patterns_TeX_la_license",
21*92a65355Syangbill    ],
22*92a65355Syangbill}
23*92a65355Syangbill
24*92a65355Syangbill// See: http://go/android-license-faq
25*92a65355Syangbilllicense {
26*92a65355Syangbill    name: "external_hyphenation_patterns_TeX_la_license",
27*92a65355Syangbill    visibility: [":__subpackages__"],
28*92a65355Syangbill    license_kinds: [
29*92a65355Syangbill        "SPDX-license-identifier-MIT",
30*92a65355Syangbill    ],
31*92a65355Syangbill    license_text: [
32*92a65355Syangbill        "NOTICE",
33*92a65355Syangbill    ],
34*92a65355Syangbill}
35*92a65355Syangbill
36*92a65355Syangbillgenrule {
37*92a65355Syangbill    name: "hyph-la-hyb",
38*92a65355Syangbill    srcs: [
39*92a65355Syangbill        "hyph-la.pat.txt",
40*92a65355Syangbill        "hyph-la.chr.txt",
41*92a65355Syangbill        "hyph-la.hyp.txt",
42*92a65355Syangbill    ],
43*92a65355Syangbill    cmd: "$(location mk_hyb_file) $(location hyph-la.pat.txt) $(out)",
44*92a65355Syangbill    tools: ["mk_hyb_file"],
45*92a65355Syangbill    out: ["hyph-la.hyb"],
46*92a65355Syangbill}
47*92a65355Syangbill
48*92a65355Syangbillprebuilt_usr_hyphendata {
49*92a65355Syangbill    name: "hyph-la",
50*92a65355Syangbill    srcs: [
51*92a65355Syangbill        ":hyph-la-hyb",
52*92a65355Syangbill        "hyph-la.lic.txt",
53*92a65355Syangbill    ],
54*92a65355Syangbill}
55