su
pkg install git
pkg install gmake
pkg install openssl
exitgit clone https://github.com/andreasdr/minitscript
cd minitscriptNote: HARDWARE_THREADS should be replaced with the number of your CPU hardware threads, e.g. if you have 2 cores and hyperthreading, you can use 4
gmake clean && gmake -j HARDWARE_THREADS mainssu
pkg_add git
pkg_add gmake
pkg_add openssl
exitgit clone https://github.com/andreasdr/minitscript
cd minitscriptNote: HARDWARE_THREADS should be replaced with the number of your CPU hardware threads, e.g. if you have 2 cores, you can use 2.
gmake clean && gmake -j HARDWARE_THREADS mainssu
pkg_add git
pkg_add gmake
pkg_add openssl
exitgit clone https://github.com/andreasdr/minitscript
cd minitscriptNote: HARDWARE_THREADS should be replaced with the number of your CPU hardware threads, e.g. if you have 2 cores, you can use 2.
gmake clean && gmake -j HARDWARE_THREADS mains CXX=clang++ CC=clangsudo apt-get install git
sudo apt-get install make
sudo apt-get install g++
sudo apt-get install libssl-devgit clone https://github.com/andreasdr/minitscript
cd minitscriptNote: HARDWARE_THREADS should be replaced with the number of your CPU hardware threads, e.g. if you have 2 cores and hyperthreading, you can use 4
make clean && make -j HARDWARE_THREADS mainsYou have to install XCode or XCode command line tools.
git clone https://github.com/andreasdr/minitscript
cd minitscriptNote: HARDWARE_THREADS should be replaced with the number of your CPU hardware threads, e.g. if you have 2 cores and hyperthreading, you can use 4
make clean && make -j HARDWARE_THREADS mainsInstall 64 Bit MSYS2 from https://www.msys2.org/, e.g. msys2-x86_64-20190524.exe, then update your MSYS2 installation and install packages.
pacman -Syu
pacman -S git
pacman -S make
pacman -S mingw-w64-x86_64-gcc
pacman -S mingw-w64-x86_64-opensslgit clone https://github.com/andreasdr/minitscript
cd minitscriptNote: HARDWARE_THREADS should be replaced with the number of your CPU hardware threads, e.g. if you have 2 cores and hyperthreading, you can use 4
make clean && make -j HARDWARE_THREADS mainsInstall Visual Studio 2022 Community Edition for C++ development, including MSVC v143 and Windows 10 SDK(10.0.19041.0). Be aware that the makefile uses the default installation paths for libraries and headers.
Use a GIT client with the following URL: https://github.com/andreasdr/minitscript and clone to a folder into your home folder like "minitscript" OR send your browser to "https://github.com/andreasdr/minitscript" and click "Clone or download/Download ZIP" and extract ZIP somewhere in your home folder, e.g. "minitscript".
Open your Visual Studio 2022 Community command line interface app for native X64 builds and execute the following commands. You need to adjust "minitscript" if you used a different folder. Also you need to extract ext/windows-msc/tools.zip to ext/windows-msc using 7zip or manually.
cd %HOMEPATH%/minitscript
cd ./ext/windows-msc && 7z x tools.zip && cd ../..
nmake -f Makefile.nmake
This will build MinitScript executables into your "minitscript" folder. You need to copy DLLs still to this folder, just that those dependencies are found. You need to adjust "minitscript" if you used a different folder.
cd %HOMEPATH%\minitscript
.\scripts\windows-prepare-platform-libs.bat
copy .\platform\libs\* .
copy .\lib\* .
- All *.EXE files are generated in your "minitscript" folder root. You should just be able to launch them from there. So you can ignore 2.1, 2.2 and 2.3.
- The MSC build process is WIP
You find binaries in
- ./bin/minitscript/tools/
On Unix like platforms you need to set up LD_LIBRARY_PATH, just that MinitScript libraries are found.
$ pwd
/usr/home/andreas/Development/mindty.com/minitscript
$ export LD_LIBRARY_PATH=`pwd`/libOn MacOSX you need to set up DYLD_LIBRARY_PATH, just that MinitScript libraries are found.
$ pwd
/usr/home/andreas/Development/mindty.com/minitscript
$ export DYLD_LIBRARY_PATH=`pwd`/libOn MSYS2/MINGW64 you need to copy shared objects files to MinitScript folder, just that MinitScript libraries are found.
$ pwd
/usr/home/andreas/Development/mindty.com/minitscript
$ cp ./lib/*.dll .You have to execute the binaries from minitscript root folder like:
$ pwd
/usr/home/andreas/Development/mindty.com/minitscript
$ ./bin/minitscript/tools/minitscript resources/minitscript/tests/base-test.tscript- MinitScript, see README.md
- MinitScript - How to build, see README-BuildingHowTo.md
- MinitScript - How to use, see README-Tools.md
- The Mindty Kollektiv Discord Server
- TODO: updated build + install documentation
- Build instructions will follow for Haiku
