From 16fec8f06d52e66eb6ad8e2333003a04ba5ac326 Mon Sep 17 00:00:00 2001 From: Tim Orling Date: Mon, 14 Jul 2014 15:35:50 -0700 Subject: slic3r, libslic3r-perl, libslic3r-xs-perl: tweaks for packaging * Add libslic3r-perl to install Slic3r.pm * Tweak libslic3r-xs-perl to install in proper location * Install slic3r.pl in ${bindir} * Additional RDEPENDS for slic3r.pl Still a work-in-progress. --- meta-maker/recipes-printing/slic3r/slic3r_git.bb | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'meta-maker/recipes-printing/slic3r/slic3r_git.bb') diff --git a/meta-maker/recipes-printing/slic3r/slic3r_git.bb b/meta-maker/recipes-printing/slic3r/slic3r_git.bb index 6c45a53af8..3e7d2f431f 100644 --- a/meta-maker/recipes-printing/slic3r/slic3r_git.bb +++ b/meta-maker/recipes-printing/slic3r/slic3r_git.bb @@ -12,12 +12,16 @@ LICENSE = "AGPL-3.0 | CC-BY-3.0" LIC_FILES_CHKSUM = "file://README.md;beginline=77;endline=84;md5=4e907cb01787f6711506359a57c22961" export SLIC3R_NO_AUTO = "1" +export PERL_MM_USE_DEFAULT = "1" +export PERL_AUTOINSTALL = "--skipdeps" +export PERL_MM_OPT = "INSTALLDIRS=vendor DESTDIR=${D}" +export PERL_MB_OPT = "--installdirs vendor --destdir ${D}" +export MODULEBUILDRC = "/dev/null" DEPENDS = " libcapture-tiny-perl-native \ libconstant-defer-perl-native \ libencode-locale-perl-native \ libextutils-cppguess-perl-native \ - libextutils-parsexs-perl-native \ libextutils-typemaps-default-perl-native \ libio-stringy-perl-native \ libmath-libm-perl-native \ @@ -47,6 +51,7 @@ RDEPENDS_${PN} = " libencode-locale-perl \ libextutils-parsexs-perl \ perl-module-file-basename \ perl-module-file-spec \ + perl-module-findbin \ perl-module-getopt-long \ libmath-planepath-perl \ libmodule-build-withxspp-perl \ @@ -54,6 +59,7 @@ RDEPENDS_${PN} = " libencode-locale-perl \ perl-module-scalar-util \ libtest-harness-perl \ libio-scalar-perl \ + libslic3r-perl \ libslic3r-xs-perl \ perl-module-time-hires \ " @@ -63,5 +69,15 @@ RECOMMENDS += " libclass-xsaccessor-perl-native \ libxml-sax-expatxs-perl-native \ libwx-perl-native \ " +do_compile() { + bbnote "No Build script generated. Skip." +} + +do_install() { + install -d ${D}${bindir} + install -m 755 ${S}/slic3r.pl ${D}${bindir} +} + +FILES_${PN} = "${bindir}/slic3r.pl" BBCLASSEXTEND = "native" -- cgit 1.2.3-korg