Hello everybody,
has someone an example for a custom builder for a library? I tried to create an Test-App with my perl Efl binding (pELF) (at the moment it is just an experiment whether it would be possible to write apps with enlightenment foundation libraries...)
This is my clickable file as far:
clickable_minimum_required: 8.0.0
builder: pure-qml-cmake
kill: qmlscene
dependencies_target:
- "libefl-all-dev"
libraries:
pEFL:
builder: custom
build:
- "perl ./Makefile.PL"
- "make"
- "make install"
with clickable build --libs I get the following error:
Can't open perl script "./Makefile.PL": No such file or directory
Command exited with non-zero exit status 2, see above for details. This is most likely not a problem with Clickable.
cd'ing into ./libs/pEFL (where I have the source of the perl module) doesn't work, too:
bash: line 3: cd: ./libs/pEFL: No such file or directory
Command exited with non-zero exit status 1, see above for details. This is most likely not a problem with Clickable.
Thanks in advance for any help
Max