-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbuild.rs
53 lines (40 loc) · 1.32 KB
/
build.rs
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
include!("src/config/cli.rs");
use std::{error::Error, fs};
use clap::{Command as ClapCommand, CommandFactory};
use clap_complete::{
Shell::{Bash, Fish, Zsh},
generate_to,
};
use clap_mangen::Man;
use vergen_gitcl::{Emitter, GitclBuilder};
static NAME: &str = "rmpc";
fn generate_man_pages(cmd: ClapCommand) -> Result<(), Box<dyn Error>> {
let out = PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("target").join("man");
let mut buffer = Vec::default();
Man::new(cmd).render(&mut buffer)?;
fs::create_dir_all(&out)?;
fs::write(out.join(NAME.to_owned() + ".1"), buffer)?;
Ok(())
}
fn generate_shell_completions(mut cmd: ClapCommand) -> Result<(), Box<dyn Error>> {
let out = PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("target").join("completions");
std::fs::create_dir_all(&out)?;
for shell in [Bash, Fish, Zsh] {
generate_to(shell, &mut cmd, NAME, &out)?;
}
Ok(())
}
fn emit_git_info() -> Result<(), Box<dyn Error>> {
Emitter::default()
.add_instructions(&GitclBuilder::default().describe(false, false, None).build()?)?
.emit()?;
Ok(())
}
fn main() -> Result<(), Box<dyn Error>> {
let mut cmd = Args::command();
cmd.set_bin_name(NAME);
generate_man_pages(cmd.clone())?;
generate_shell_completions(cmd)?;
emit_git_info()?;
Ok(())
}