After built Retroshare with script.Script advise by Max( Dooble Developer ).It's cannot process all job in script because set "exit" before download Retroshare.I move exit command to end line of script.
Behind build project with "qmake" command for create libretroshare.pro are problems about library path and include path.It's can see link here for install Retroshare in Linux OS.One problem found in "MakeFile" at directory retroshare-gui is cannot found "lgpgme".
Line at define "LIBS",You able config MakeFile path specific libgpgme by start with -L flag(I found library name libgpgme at path "gpgme-1.1.8/src/.libs").Example :
-L/gpgme-1.1.8/src/.libs
Thus,
LIBS = $(SUBLIBS) [...] gpgme-1.1.8/src/.libs/ -lgpgme [...]
After save MakeFile in retroshare-gui and type make command again.
Other problem with include path.It can specific path with "INCPATH" for include header file.Assume after show error "I cannont find "gpgme.h" in directory."(I found problem among build retroshare-gui.It's show Networkdialog.o cannot found "gpgme.h" in directory).MakeFile able to specific path by at "INCPATH" line.See example below.
INCPATH = [...] -I/gpgme-1.1.8/src/ [...]
After save MakeFile and type Make command again.Success!.