This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository www-content.
View the commit online.
commit 5a9c4fd2a17ce82059fe94181cdda9bf4e6f72f5
Author: Vincent Torri <vincent.to...@gmail.com>
AuthorDate: Wed Aug 16 09:29:09 2023 -0700
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 ###
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.