declare -a libtasks="${lib[7]}"; #populate tasks array element
for task in "${libtasks[@]}";do
task=$(_replace_tokens "$task"); #replace tokens
task=$(_replace_tokens "$task"); #replace tokens
buildtasks+=("$task");
done
@ -393,7 +393,7 @@ _create_config(){
"#Displayname" \
"#Versionnumber" \
"#Filename to check in pkgconfig folder for an existing library to get version information" \
"#Valid URL for downloading sources of library\n#List of build commands below. Pay attention to the SEMICOLON at the end of EACH\n#command and the correct quoting (\' or \") for or to avoid expansion of variables.\n#Tokens @TOOLCHAIN@, @CC@, @RANLIB@, @PREFIX@ are replaced automatically." \
"#Valid URL for downloading sources of library\n#List of build commands below. Pay attention to the SEMICOLON at the end of EACH\n#command and the correct quoting (' or \") for or to avoid expansion of variables.\n#Tokens @TOOLCHAIN@, @CC@, @RANLIB@, @PREFIX@, @HOST@ are replaced automatically." \
"#build command"
);
sample_settings=( "" name version check url tasks );