Bundle with cargo deb

This commit is contained in:
Patrick Lühne 2020-05-26 03:35:24 +02:00
parent 4c833c591c
commit eb95394a86
Signed by: patrick
GPG Key ID: 05F3611E97A70ABF
3 changed files with 20 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/target
/Cargo.lock

15
Cargo.toml Normal file
View File

@ -0,0 +1,15 @@
[package]
name = "ghe-fast-tools"
version = "0.1.0"
authors = ["Patrick Lühne <patrick@luehne.de>"]
description = "Fast replacements for the GitHub admin tools"
edition = "2018"
[package.metadata.deb]
assets = [
["github-fast-env/github-fast-envd.rb", "usr/bin/github-fast-envd", "755"],
["github-fast-env/github-fast-env.rb", "usr/bin/github-fast-env", "755"],
["github-fast-env/systemd/github-fast-envd.service", "usr/lib/systemd/system/", "644"],
["ghe-fast-tools/ghe-fast-console.rb", "usr/lib/github-fast-env/", "644"],
["ghe-fast-tools/bin/ghe-fast-console.rb", "usr/bin/ghe-fast-console", "755"],
]

3
src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main()
{
}