mirror of
https://git.sr.ht/~lattis/muon
synced 2026-01-27 09:54:50 +00:00
18 lines
358 B
C
18 lines
358 B
C
/*
|
|
* SPDX-FileCopyrightText: Stone Tickle <lattis@mochiro.moe>
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
|
|
#ifndef MUON_CMD_INSTALL_H
|
|
#define MUON_CMD_INSTALL_H
|
|
#include <stdbool.h>
|
|
|
|
struct install_options {
|
|
const char *destdir;
|
|
bool dry_run, uninstall;
|
|
};
|
|
|
|
struct workspace;
|
|
bool install_run(struct workspace *wk, struct install_options *opts);
|
|
#endif
|