diff options
author | Khem Raj <raj.khem@gmail.com> | 2024-05-14 10:05:20 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-05-23 08:44:44 -0700 |
commit | c33cfad1b0e1f84f6605689457e16fb0518ee383 (patch) | |
tree | 9a280a37e62ddbfda807dea68419ab457bbe657a /meta-oe/recipes-graphics | |
parent | ffc64e9c6fee0af7eea3466135416d011172a5e6 (diff) | |
download | meta-openembedded-c33cfad1b0e1f84f6605689457e16fb0518ee383.tar.gz |
recipes: Switch away from S = WORKDIR
Make it dependent on UNPACKDIR instead
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-graphics')
3 files changed, 6 insertions, 3 deletions
diff --git a/meta-oe/recipes-graphics/ttf-fonts/ttf-google-fira.bb b/meta-oe/recipes-graphics/ttf-fonts/ttf-google-fira.bb index d61860749..c142f1dd0 100644 --- a/meta-oe/recipes-graphics/ttf-fonts/ttf-google-fira.bb +++ b/meta-oe/recipes-graphics/ttf-fonts/ttf-google-fira.bb | |||
@@ -23,7 +23,8 @@ SRC_URI = "git://github.com/google/fonts.git;protocol=https;branch=main;subpath= | |||
23 | git://github.com/google/fonts.git;protocol=https;branch=main;subpath=ofl/firasanscondensed;name=firasanscondensed \ | 23 | git://github.com/google/fonts.git;protocol=https;branch=main;subpath=ofl/firasanscondensed;name=firasanscondensed \ |
24 | git://github.com/google/fonts.git;protocol=https;branch=main;subpath=ofl/firasansextracondensed;name=firasansextracondensed" | 24 | git://github.com/google/fonts.git;protocol=https;branch=main;subpath=ofl/firasansextracondensed;name=firasansextracondensed" |
25 | 25 | ||
26 | S = "${WORKDIR}" | 26 | S = "${WORKDIR}/sources" |
27 | UNPACKDIR = "${S}" | ||
27 | 28 | ||
28 | do_install:append() { | 29 | do_install:append() { |
29 | install -d ${D}${datadir}/fonts/truetype/ | 30 | install -d ${D}${datadir}/fonts/truetype/ |
diff --git a/meta-oe/recipes-graphics/ttf-fonts/ttf-lklug_0.6-14.20090803cvs.fc24.bb b/meta-oe/recipes-graphics/ttf-fonts/ttf-lklug_0.6-14.20090803cvs.fc24.bb index 395164733..65d0f0bb3 100644 --- a/meta-oe/recipes-graphics/ttf-fonts/ttf-lklug_0.6-14.20090803cvs.fc24.bb +++ b/meta-oe/recipes-graphics/ttf-fonts/ttf-lklug_0.6-14.20090803cvs.fc24.bb | |||
@@ -10,7 +10,8 @@ SRC_URI[sha256sum] = "de5750f7048973f851961050f76b8b58e9bda400d5007c3078d9317fbe | |||
10 | 10 | ||
11 | DEPENDS = "fontforge-native" | 11 | DEPENDS = "fontforge-native" |
12 | 12 | ||
13 | S = "${WORKDIR}" | 13 | S = "${WORKDIR}/sources" |
14 | UNPACKDIR = "${S}" | ||
14 | FONT_PACKAGES = "${PN}" | 15 | FONT_PACKAGES = "${PN}" |
15 | FILES:${PN} = "${datadir}" | 16 | FILES:${PN} = "${datadir}" |
16 | 17 | ||
diff --git a/meta-oe/recipes-graphics/ttf-fonts/ttf-roboto_2.138.bb b/meta-oe/recipes-graphics/ttf-fonts/ttf-roboto_2.138.bb index 1870c78f9..3752ec39b 100644 --- a/meta-oe/recipes-graphics/ttf-fonts/ttf-roboto_2.138.bb +++ b/meta-oe/recipes-graphics/ttf-fonts/ttf-roboto_2.138.bb | |||
@@ -9,6 +9,7 @@ SRC_URI = "https://github.com/google/roboto/releases/download/v${PV}/roboto-andr | |||
9 | SRC_URI[md5sum] = "3b43a5cb33196ec25e44d5fcb40219e1" | 9 | SRC_URI[md5sum] = "3b43a5cb33196ec25e44d5fcb40219e1" |
10 | SRC_URI[sha256sum] = "c825453253f590cfe62557733e7173f9a421fff103b00f57d33c4ad28ae53baf" | 10 | SRC_URI[sha256sum] = "c825453253f590cfe62557733e7173f9a421fff103b00f57d33c4ad28ae53baf" |
11 | 11 | ||
12 | S = "${WORKDIR}" | 12 | S = "${WORKDIR}/sources" |
13 | UNPACKDIR = "${S}" | ||
13 | 14 | ||
14 | FILES:${PN} = "${datadir}/fonts/truetype/*.ttf" | 15 | FILES:${PN} = "${datadir}/fonts/truetype/*.ttf" |