deb-control-rs

GitHub Actions MIT licensed Released API docs

Crate for DEB/control file generation in Rust

Usage

This crate provides a simple builder interface for DEB/control files generation. There are two types of builders: binary and source. To access them use the associated functions on DebControlBuilder, for example: ```rust use deb_control::DebControlBuilder;

DebControlBuilder::binarypackagebuilder(); // or DebControlBuilder::sourcepackagebuilder(); ```

Here's an example of building a binary DEB/control from scratch: ```rust use deb_control::DebControlBuilder;

fn main() -> Result<(), std::boxed::Box> { let control = DebControlBuilder::binarypackagebuilder("debcontrol") .source("package.tar.gz") .version("1") .architecture("any") .maintainer("Wojciech Kępka wojciech@wkepka.dev") .description("crate for DEB/control file generation") .essential(true) .section("devel") .homepage("https://github.com/wojciechkepka/debcontrol") .builtusing("rustc") .addpredependsentries(vec!["rustc", "cargo"]) .adddependsentries(vec!["rustc", "cargo"]) .addconflictsentries(vec!["rustc", "cargo"]) .addprovidesentries(vec!["rustc", "cargo"]) .addreplacesentries(vec!["rustc", "cargo"]) .addenchancesentries(vec!["rustc", "cargo"]) .addprovidesentries(vec!["debcontrol"]) .build();

// you can later render it to a string like so:
let _rendered = control.render()?;

// or save it directly to a file
control.save_to("/tmp/CONTROL")?;

Ok(())

}

```

License

MIT