cjson_output = cJSON_Print(rootpkg);
fs = fopen(manifestpath, "w+");
fprintf(fs, "%s", cjson_output);
free(cjson_output);
fclose(fs);
return (rootpkg);