mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-07-30 18:32:00 +08:00
14 lines
253 B
Bash
Executable File
14 lines
253 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
|
|
|
|
export LIBRARY_PATH=/usr/local/lib
|
|
perl ./Build.PL --gui
|