#ifndef PACKAGE_H #define PACKAGE_H #include typedef struct { char* name; char* url; char* checksum; } source_info_t; typedef struct { char* script_path; struct { char buffer[4069]; char* id; char* name; char* desc; char* webpage; char* license; char* version; source_info_t source; } attrs; } package_info_t; #endif