mirror of https://github.com/dswd/vpncloud.git
29 lines
1.1 KiB
Rust
29 lines
1.1 KiB
Rust
// VpnCloud - Peer-to-Peer VPN
|
|
// Copyright (C) 2015-2021 Dennis Schwerdel
|
|
// This software is licensed under GPL-3 or newer (see LICENSE.md)
|
|
|
|
use std::{env, fs, path::Path, process::Command};
|
|
|
|
fn main() {
|
|
let out_dir = env::var("OUT_DIR").unwrap();
|
|
|
|
// Process manpage using asciidoctor command
|
|
println!("cargo:rerun-if-changed=vpncloud.adoc");
|
|
fs::create_dir_all(&out_dir).unwrap();
|
|
fs::copy("vpncloud.adoc", Path::new(&out_dir).join("vpncloud.adoc")).unwrap();
|
|
match Command::new("asciidoctor")
|
|
.args(&["-b", "manpage", "vpncloud.adoc"])
|
|
.current_dir(&Path::new(&out_dir))
|
|
.status()
|
|
{
|
|
Ok(_) => {
|
|
Command::new("gzip").args(&["vpncloud.1"]).current_dir(&Path::new(&out_dir)).status().unwrap();
|
|
fs::copy(Path::new(&out_dir).join("vpncloud.1.gz"), "target/vpncloud.1.gz").unwrap();
|
|
}
|
|
Err(err) => {
|
|
println!("cargo:warning=Error building manpage: {}", err);
|
|
println!("cargo:warning=The manpage will not be build. Do you have 'asciidoctor'?");
|
|
}
|
|
}
|
|
}
|