Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
howtos:win32:msys2 [2025/02/01 11:44] – updating guide to build from git as advised method giuspen | howtos:win32:msys2 [2025/02/01 17:04] (current) – use git clean -dfx as distclean may fail if there was no configure yet giuspen | ||
---|---|---|---|
Line 114: | Line 114: | ||
mkdir -p ~/ | mkdir -p ~/ | ||
cd ~/ | cd ~/ | ||
- | bash ~/geany-master/ | + | bash ~/git/ |
There are a few command line options for this script. Run it with " | There are a few command line options for this script. Run it with " | ||
Line 127: | Line 127: | ||
mkdir -p ~/ | mkdir -p ~/ | ||
cd ~/ | cd ~/ | ||
- | bash ~/ | + | bash ~/git/ |
===== Creating an installer / Making a release ===== | ===== Creating an installer / Making a release ===== | ||
Line 142: | Line 142: | ||
DESTINATON=$HOME/ | DESTINATON=$HOME/ | ||
- | VERSION=" | + | VERSION=" |
- | cd ~/geany-master | + | cd ~/git/geany |
- | | + | |
- | ./ | + | |
+ | export lt_cv_deplibs_check_method=${lt_cv_deplibs_check_method=' | ||
mkdir _build | mkdir _build | ||
cd _build | cd _build | ||
../ | ../ | ||
- | make -j 2 | + | make -j |
make install | make install | ||
rm -rf $DESTINATON/ | rm -rf $DESTINATON/ | ||
+ | mkdir -p $DESTINATON/ | ||
rsync -a --delete ${DESTINATON}/ | rsync -a --delete ${DESTINATON}/ | ||
Line 179: | Line 181: | ||
DESTINATON=$HOME/ | DESTINATON=$HOME/ | ||
- | VERSION=" | + | VERSION=" |
- | cd ~/ | + | cd ~/git/ |
- | | + | |
- | ./ | + | |
+ | export lt_cv_deplibs_check_method=${lt_cv_deplibs_check_method=' | ||
mkdir _build | mkdir _build | ||
cd _build | cd _build | ||
../ | ../ | ||
- | make -j 2 | + | make -j |
make DESTDIR=${DESTINATON}/ | make DESTDIR=${DESTINATON}/ | ||
+ | rm -rf $DESTINATON/ | ||
+ | mkdir -p $DESTINATON/ | ||
rsync -a --delete ${DESTINATON}/ | rsync -a --delete ${DESTINATON}/ | ||