aboutsummaryrefslogtreecommitdiff
path: root/snag/src/build_db.h
blob: 4b735a762916560e84ba3c8ca8df92a8892530b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef BUILD_DB_H
#define BUILD_DB_H

#include "package.h"

typedef struct {
	const package_info_t* package;
	char* directory;
	char* fakeroot;
	char* source_directory;
} package_build_t;

bool package_setup_build(const package_info_t* info, package_build_t* build);
void build_run(const package_build_t* info);
void list_fakeroot(const package_build_t* info);

#endif