Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/soleinik/rust-pkg-deb
deb packaging primer
https://github.com/soleinik/rust-pkg-deb
cargo-deb rust rust-lang rust-language
Last synced: about 1 month ago
JSON representation
deb packaging primer
- Host: GitHub
- URL: https://github.com/soleinik/rust-pkg-deb
- Owner: soleinik
- License: mit
- Created: 2020-02-13T02:13:21.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-16T03:47:33.000Z (almost 5 years ago)
- Last Synced: 2023-10-30T02:35:32.870Z (about 1 year ago)
- Topics: cargo-deb, rust, rust-lang, rust-language
- Language: Rust
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rust-deb-daemon primer
## host info
```
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 18.04.4 LTS
Release: 18.04
Codename: bionic
```![cargo-deb](https://crates.io/crates/cargo-deb)
## local cargo setup
```
$ cargo install cargo-deb
```## cargo deb
```
$ cargo deb
warning: license field is missing in Cargo.toml
warning: README.md file exists, but is not specified in `readme` Cargo.toml field
Compiling rust-deb-daemon v0.1.0 (/home/soleinik/work/rust/rust-pkg-deb)
Finished release [optimized] target(s) in 0.20s
/home/soleinik/work/rust/rust-pkg-deb/target/debian/rust-deb-daemon_0.1.0_amd64.deb$ tree target/debian/
target/debian/
└── rust-deb-daemon_0.1.0_amd64.deb0 directories, 1 file
```