I confirm it works!
Thanks to Ponce and "jghali" of scribus dev team.
I tested compile and run on slackware 14.2 (the present stable version).
In my case I had to fix the SBo, gperon previous slackbuild script as ponce as suggested:
replace following lines:
Code:
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC -std=c++11"
with theese below (-std=c++11 has to be removed, it is no more compatible with 1.5.3 scribus version nor with "clang/clang++" compiler:
Code:
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
Then added to cmake the following otpion:
And the Ponce above suggest:
Code:
export CC=clang
export CXX=clang++
I notice GPeron has edited his slackbuild too, now you can find it at:
https://github.com/gperon/my_slackbu...bus.SlackBuild
http://www.gperon.org/?p=1234
Thanks to all for replies, suggestions and script provided!

Until next time!
