From 5a9c4fd2a17ce82059fe94181cdda9bf4e6f72f5 Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Wed, 16 Aug 2023 09:29:09 -0700 Subject: [PATCH] Wiki page windows-start.md changed with summary [] by Vincent Torri --- pages/docs/distros/windows-start.md.txt | 44 +++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/pages/docs/distros/windows-start.md.txt b/pages/docs/distros/windows-start.md.txt index c0a6261df..73f549031 100644 --- a/pages/docs/distros/windows-start.md.txt +++ b/pages/docs/distros/windows-start.md.txt @@ -51,6 +51,50 @@ This will install all the dependencies of the EFL in `$HOME/ewpi_64` ### Step 3: Installing the EFL ### +1. In the MSYS2 terminal, in a directory, clone the EFL directory : `git clone https://git.enlightenment.org/enlightenment/efl.git` +2. Save the following script in the `efl`directory : + +```bash +#! /bin/bash + +export EWPI_PATH=$HOME/ewpi_64 +export PKG_CONFIG_PATH=$EWPI_PATH/lib/pkgconfig +export CPPFLAGS=-I$EWPI_PATH/include +export LDFLAGS=-L$EWPI_PATH/lib + +rm -rf builddir + +meson setup \ + --prefix=$HOME/efl_64 \ + --libdir=lib \ + --buildtype=release \ + --strip \ + --default-library shared \ + -Dsystemd=false \ + -Dpulseaudio=false \ + -Dv4l2=false \ + -Dlibmount=false \ + -Deeze=false \ + -Dx11=false \ + -Dxinput2=false \ + -Devas-loaders-disabler='pdf','ps','rsvg','json' \ + -Dopengl=none \ + -Dpixman=true \ + -Dembedded-lz4=false \ + -Dfribidi=true \ + -Dinput=false \ + -Dbuild-examples=false \ + -Dbuild-tests=false \ + -Dbindings='cxx' \ + -Dlua-interpreter=luajit \ + -Delua=true \ + builddir + +ninja -C builddir install +``` + +Once it is finished, you can test `elementary_test` + ### Step 4: Configuring the Software ### ### Step 5: Carrying out Post Installation Tasks ###