joeydev/buildDeps.sh

19 lines
262 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