mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-07-28 20:01:58 +08:00
14 lines
324 B
Bash
Executable File
14 lines
324 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
brew update -v
|
|
brew install boost perl cpanminus wxwidgets
|
|
brew link --overwrite perl cpanminus
|
|
|
|
export SLIC3R_STATIC=1
|
|
export BOOST_DIR=/usr/local
|
|
#perl ./Build.PL
|
|
cpanm -v --reinstall --local-lib local-lib Alien::wxWidgets
|
|
cpanm -v --reinstall --local-lib local-lib Wx
|
|
perl ./Build.PL --gui
|