xref: /aosp_15_r20/external/hyphenation-patterns/TeX/or/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*92a65355Syangbillpackage {
16*92a65355Syangbill    default_applicable_licenses: [
17*92a65355Syangbill        "external_hyphenation_patterns_TeX_or_license",
18*92a65355Syangbill    ],
19*92a65355Syangbill}
20*92a65355Syangbill
21*92a65355Syangbill// See: http://go/android-license-faq
22*92a65355Syangbilllicense {
23*92a65355Syangbill    name: "external_hyphenation_patterns_TeX_or_license",
24*92a65355Syangbill    visibility: [":__subpackages__"],
25*92a65355Syangbill    license_kinds: [
26*92a65355Syangbill        "SPDX-license-identifier-MIT",
27*92a65355Syangbill    ],
28*92a65355Syangbill    license_text: [
29*92a65355Syangbill        "NOTICE",
30*92a65355Syangbill    ],
31*92a65355Syangbill}
32*92a65355Syangbill
33*92a65355Syangbillgenrule {
34*92a65355Syangbill    name: "hyph-or-hyb",
35*92a65355Syangbill    srcs: [
36*92a65355Syangbill        "hyph-or.pat.txt",
37*92a65355Syangbill        "hyph-or.chr.txt",
38*92a65355Syangbill        "hyph-or.hyp.txt",
39*92a65355Syangbill    ],
40*92a65355Syangbill    cmd: "$(location mk_hyb_file) $(location hyph-or.pat.txt) $(out)",
41*92a65355Syangbill    tools: ["mk_hyb_file"],
42*92a65355Syangbill    out: ["hyph-or.hyb"],
43*92a65355Syangbill}
44*92a65355Syangbill
45*92a65355Syangbillprebuilt_usr_hyphendata {
46*92a65355Syangbill    name: "hyph-or",
47*92a65355Syangbill    srcs: [
48*92a65355Syangbill        ":hyph-or-hyb",
49*92a65355Syangbill        "hyph-or.lic.txt",
50*92a65355Syangbill    ],
51*92a65355Syangbill}
52