diff options
author | Scott Murray <scott.murray@konsulko.com> | 2021-08-20 13:58:45 -0400 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2021-08-20 15:51:10 -0400 |
commit | 4249268041b879b3d2bae338d5de88f4f2d54b26 (patch) | |
tree | 757fd0c2daef3e0ccea1a12c27f900defaea2827 /recipes-multimedia/openjtalk | |
parent | e89376af34201168a3e8d3fe72258b587edb7d71 (diff) |
Convert to new override syntax
This is the result of running a slightly customized version of the
convert-overrides.py script from poky with additional overrides
added.
The intent of these changes is to minimize the effort to keep the
"next" branch that builds against poky master up to date and tested
in preparation for the switch to the next Yocto LTS release in
early 2022.
Bug-AGL: SPEC-4052
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: I6eeadd2c985c008b04f8f9815bf0f6fb064bedac
Diffstat (limited to 'recipes-multimedia/openjtalk')
-rw-r--r-- | recipes-multimedia/openjtalk/openjtalk-voicedata_1.6.bb | 2 | ||||
-rw-r--r-- | recipes-multimedia/openjtalk/openjtalk_1.09.bb | 14 |
2 files changed, 8 insertions, 8 deletions
diff --git a/recipes-multimedia/openjtalk/openjtalk-voicedata_1.6.bb b/recipes-multimedia/openjtalk/openjtalk-voicedata_1.6.bb index 27ef7b57c..f4e6a8d46 100644 --- a/recipes-multimedia/openjtalk/openjtalk-voicedata_1.6.bb +++ b/recipes-multimedia/openjtalk/openjtalk-voicedata_1.6.bb @@ -19,4 +19,4 @@ do_install() { install -m 0644 -p ${S}/Voice/mei/*.htsvoice ${D}/${datadir}/Voice/mei/ } -FILES_${PN} += " ${datadir}/Voice/mei/*.htsvoice " +FILES:${PN} += " ${datadir}/Voice/mei/*.htsvoice " diff --git a/recipes-multimedia/openjtalk/openjtalk_1.09.bb b/recipes-multimedia/openjtalk/openjtalk_1.09.bb index 5ac0771a7..0c780a072 100644 --- a/recipes-multimedia/openjtalk/openjtalk_1.09.bb +++ b/recipes-multimedia/openjtalk/openjtalk_1.09.bb @@ -12,7 +12,7 @@ SRC_URI = "\ file://fix-mecab-tool.patch \ " -SRC_URI_class-native = "\ +SRC_URI:class-native = "\ http://downloads.sourceforge.net/open-jtalk/open_jtalk-${PV}.tar.gz \ " @@ -21,10 +21,10 @@ SRC_URI[md5sum] = "5dfdbad432d892f044fb96129a524bfe" SRC_URI[sha256sum] = "8ed79238d825fee1d9e0a1c6c8a89e2cc707189be1caa3fa79e8eb72436079d7" DEPENDS = " hts-engine openjtalk-native " -DEPENDS_class-native = " hts-engine-native " +DEPENDS:class-native = " hts-engine-native " -RDEPENDS_${PN} = " openjtalk-voicedata " -RDEPENDS_${PN}_class-native = " " +RDEPENDS:${PN} = " openjtalk-voicedata " +RDEPENDS:${PN}:class-native = " " inherit autotools-brokensep @@ -36,14 +36,14 @@ EXTRA_OECONF = " \ --with-hts-engine-library-path=${PKG_CONFIG_SYSROOT_DIR}/usr/lib \ " -EXTRA_OECONF_class-native = " \ +EXTRA_OECONF:class-native = " \ --with-hts-engine-header-path=${includedir} \ --with-hts-engine-library-path=${libdir} \ " -do_install_append_class-native() { +do_install:append:class-native() { install -m 755 mecab/src/mecab-dict-index ${D}${bindir} } -FILES_${PN} += " ${datadir}/dic/* " +FILES:${PN} += " ${datadir}/dic/* " |