16 lines
258 B
Bash
16 lines
258 B
Bash
#!/bin/bash
|
|
|
|
pushd thirdparty
|
|
# Scintilla
|
|
[[ -d scintilla ]] && rm -rf scintilla
|
|
tar xzf scintilla531.tgz
|
|
pushd scintilla/gtk
|
|
GTK3=1 make
|
|
popd
|
|
# Lexilla
|
|
[[ -d lexilla ]] && rm -rf lexilla
|
|
tar xzf lexilla520.tgz
|
|
pushd lexilla/src
|
|
make
|
|
popd
|
|
popd
|