summaryrefslogtreecommitdiff
path: root/meson
diff options
context:
space:
mode:
authorMarcel Hollerbach <mail@marcel-hollerbach.de>2018-08-12 15:26:29 +0200
committerMarcel Hollerbach <mail@marcel-hollerbach.de>2018-10-02 17:22:50 +0200
commit46d464e5bfc10398461a33a2256c1c58d509dd1a (patch)
tree8c1a9272c05f14033a4430bc122632461bd73608 /meson
parent70ecf1056bb4be5a68b63044f938ccc2fe0a58c0 (diff)
downloadefl-46d464e5bfc10398461a33a2256c1c58d509dd1a.tar.gz
here comes meson
a new shiny buildtool that currently completes in the total of ~ 4 min.. 1 min. conf time 2:30 min. build time Where autotools takes: 1:50 min. conf time 3:40 min. build time. meson was taken because it went quite good for enlightenment, and is a traction gaining system that is also used by other mayor projects. Additionally, the DSL that is defined my meson makes the configuration of the builds a lot easier to read. Further informations can be gathered from the README.meson Right now, bindings & windows support are missing. It is highly recommented to use meson 0.48 due to optimizations in meson that reduced the time the meson call would need. Co-authored-by: Mike Blumenkrantz <zmike@samsung.com> Differential Revision: https://phab.enlightenment.org/D7012 Depends on D7011
Diffstat (limited to 'meson')
-rw-r--r--meson/clean_check.sh3
-rwxr-xr-xmeson/evas_loader_conf.sh18
-rwxr-xr-xmeson/meson_modules.sh8
3 files changed, 29 insertions, 0 deletions
diff --git a/meson/clean_check.sh b/meson/clean_check.sh
new file mode 100644
index 0000000000..c054794048
--- /dev/null
+++ b/meson/clean_check.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+test -f ${MESON_SOURCE_ROOT}/configure
diff --git a/meson/evas_loader_conf.sh b/meson/evas_loader_conf.sh
new file mode 100755
index 0000000000..5ed40e3a2e
--- /dev/null
+++ b/meson/evas_loader_conf.sh
@@ -0,0 +1,18 @@
+#!/bin/bash
+
+original_loader=$1
+filename="$(basename $original_loader)"
+ext="${ext##*.}"
+original_name="$(basename $original_loader $ext)"
+loader_dir="$(dirname $original_loader)"
+loader="$(basename $original_loader)"
+loader_name="$(echo $original_name | cut -f 1 -d '.')"
+
+if [ ${original_loader: -3} == "$ext" ]
+ then
+ mv "$DESTDIR"/"$original_loader" "$DESTDIR"/"$loader_dir"/"$original_name"
+fi
+
+for x in "${@:2}"; do
+ ln -sf "$DESTDIR"/"$loader_dir"/"$original_name" "$DESTDIR"/"$loader_dir"/"$loader_name"."$x"
+done \ No newline at end of file
diff --git a/meson/meson_modules.sh b/meson/meson_modules.sh
new file mode 100755
index 0000000000..3398e048b5
--- /dev/null
+++ b/meson/meson_modules.sh
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+for x in "$@" ; do
+ dir="$(dirname $x)"
+ filename="$(basename $x)"
+ ext="${filename##*.}"
+ mv "$DESTDIR"/"$x" "$DESTDIR"/"$dir"/module."$ext"
+done