onefang pushed a commit to branch master. http://git.enlightenment.org/admin/devs.git/commit/?id=d40c0fe86b822e8866b38273d131fed1a3e97a67
commit d40c0fe86b822e8866b38273d131fed1a3e97a67 Author: David Walter Seikel <won_f...@yahoo.com.au> Date: Sun Aug 30 12:39:54 2015 +1000 Support my own Lua build "system". --- developers/onefang/build_efl.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/developers/onefang/build_efl.lua b/developers/onefang/build_efl.lua index b8b435e..2d15fa5 100755 --- a/developers/onefang/build_efl.lua +++ b/developers/onefang/build_efl.lua @@ -149,6 +149,8 @@ local function build(i, package) if good then good = runBuildCommand(i, package, path, './autogen.sh --prefix=' .. installPath .. ' --cache-file=/tmp/eflBuild/autofoo.cache ' .. conf) end if good then good = runBuildCommand(i, package, path, 'make -j' .. threads) end if good then good = runBuildCommand(i, package, path, 'sudo make install') end + elseif fileExists(path .. '/build.lua') then + if good then good = runBuildCommand(i, package, path, './build.lua') end elseif fileExists(path .. '/build.sh') then if good then good = runBuildCommand(i, package, path, './build.sh') end elseif fileExists(path .. '/bootstrap.sh') then --