diff options
author | Markus Volk <f_l_k@t-online.de> | 2023-11-12 13:08:09 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-11-13 11:38:03 +0000 |
commit | 9d830bb2ea43c5954b61b233aafae7e1ce89469d (patch) | |
tree | 18e697ec8fb5e4238f767df867cf718e49636d3e | |
parent | f62010de2158cfdce50f2339af4268dd7b10156a (diff) | |
download | poky-9d830bb2ea43c5954b61b233aafae7e1ce89469d.tar.gz |
ghostscript: Build and install shared lib
libgs is eg. needed to build ghostscript support for gimp
also install the data target
(From OE-Core rev: cedd211d8b73076d1ef6f32af1c59e87a436d637)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/ghostscript/ghostscript_10.02.1.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-extended/ghostscript/ghostscript_10.02.1.bb b/meta/recipes-extended/ghostscript/ghostscript_10.02.1.bb index 18c296128a..2a966afc21 100644 --- a/meta/recipes-extended/ghostscript/ghostscript_10.02.1.bb +++ b/meta/recipes-extended/ghostscript/ghostscript_10.02.1.bb | |||
@@ -60,7 +60,8 @@ prune_sources() { | |||
60 | do_unpack[postfuncs] += "prune_sources" | 60 | do_unpack[postfuncs] += "prune_sources" |
61 | 61 | ||
62 | do_install:append () { | 62 | do_install:append () { |
63 | mkdir -p ${D}${datadir}/ghostscript/${PV}/ | 63 | oe_runmake DESTDIR=${D} install-so |
64 | oe_runmake DESTDIR=${D} install-data | ||
64 | cp -r ${S}/Resource ${D}${datadir}/ghostscript/${PV}/ | 65 | cp -r ${S}/Resource ${D}${datadir}/ghostscript/${PV}/ |
65 | cp -r ${S}/iccprofiles ${D}${datadir}/ghostscript/${PV}/ | 66 | cp -r ${S}/iccprofiles ${D}${datadir}/ghostscript/${PV}/ |
66 | } | 67 | } |