pacman-repo-builder 0.0.0-rc.65

Build a custom pacman repository from a collection of PKGBUILD directories
pub mod app;
pub mod args;
pub mod cmd;
pub mod manifest;
pub mod srcinfo;
pub mod status;
pub mod utils;

pub fn main() {
    use pipe_trait::*;
    app::App::from_env()
        .run()
        .pipe(status::get_code)
        .pipe(std::process::exit)
}

pub use alpm;
pub use argh;
pub use git2;
pub use indexmap;
pub use num_bigint;
pub use num_traits;
pub use petgraph;