STASIS
A pipeline delivery generator
Loading...
Searching...
No Matches
recipe.h
Go to the documentation of this file.
1
2#ifndef STASIS_RECIPE_H
3#define STASIS_RECIPE_H
4
5#include "str.h"
6#include "utils.h"
7
9#define RECIPE_TYPE_UNKNOWN 0
11#define RECIPE_TYPE_CONDA_FORGE 1
13#define RECIPE_TYPE_ASTROCONDA 2
15#define RECIPE_TYPE_GENERIC 3
16
37int recipe_clone(char *recipe_dir, char *url, char *gitref, char **result);
38
70int recipe_get_type(char *repopath);
71
72#endif //STASIS_RECIPE_H
int recipe_clone(char *recipe_dir, char *url, char *gitref, char **result)
Definition recipe.c:3
int recipe_get_type(char *repopath)
Definition recipe.c:38