summaryrefslogtreecommitdiff
path: root/build.h
blob: 92cbe9f66de516d8b421c72e1b52fa4a6e69484a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef H_BUILD
#define H_BUILD

#ifdef __cplusplus
extern "C" {
#endif

extern struct poptOption rpmBuildPoptTable[];

struct rpmBuildArguments {
    int buildAmount;
    char *buildRootOverride;
    char *targets;
    int useCatalog;
    int noLang;
    int noBuild;
    int shortCircuit;
    char buildChar;
};

int build(const char *arg, int buildAmount, const char *passPhrase,
	         const char *buildRoot, int fromTarball, int test, char *cookie,
                 const char * rcfile, char * buildplatforms, int force);

#ifdef __cplusplus
}
#endif

#endif