/* SPDX-License-Identifier: ISC */ #ifndef BUILDSTRATEGY_H #define BUILDSTRATEGY_H #include #include #include #include #include #include #include "command.h" #include "util/util.h" #include "util/hashtable.h" enum { FLAG_BUILD_PKG = 0x01, }; typedef struct source_pkg_t { char *name; struct source_pkg_t **depends; size_t num_depends; int flags; } source_pkg_t; #endif /* BUILDSTRATEGY_H */