mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-07-28 09:12:02 +08:00

* linux packaging script should be functional now (from travis) * Updated travis to build with distribution * Moved cache management to script. * Add perlbrew download * Point to my server and use the correct perlbrew path. * added bintray encrypted link * used right script name * fixed deploy path and used correct deploy * Updated to use TRAVIS_COMMIT env variable * updating deployment for travis * oops, inverted logic * Cleanup of files, renamed make_par to make_archive. Factored out some functions to common/util.sh * replaced slic3r dir with current dir (not script dir) * ensured PAR::Packer is installed. * added -v to install * can't mix globbing and shell replacement in the same thing. * adding some debug code, setting sudo: false * factored out get_app_name * added set version to utils * prototype appimage * cache perlbrew, added ./ to WD in make_archive * added more noise * sudo-false takes twice as long to build for some stupid reason. * make unzip quiet. * run ldd bundle to see output * quiet down tar, set ld library path
6 lines
134 B
Bash
6 lines
134 B
Bash
#!/bin/bash
|
|
|
|
DIR=$(dirname "$0")
|
|
export LD_LIBRARY_PATH=./bin
|
|
exec "$DIR/perl-local" -I"$DIR/local-lib/lib/perl5" "$DIR/slic3r.pl" $@
|