0d3d6256fb
- Run spec-cleaner - Remove double %setup macro - Simplify tar command in README.packager OBS-URL: https://build.opensuse.org/request/show/699676 OBS-URL: https://build.opensuse.org/package/show/utilities/bat?expand=0&rev=8
19 lines
514 B
Plaintext
19 lines
514 B
Plaintext
# Heavily based on https://build.opensuse.org/package/view_file/devel:languages:rust/racer/README.packager (Thank you for this!)
|
|
#
|
|
# Generating `vendor.tar.xz`
|
|
|
|
1. Install `cargo` and `cargo-vendor` from official repositories. `cargo` is provided by `rust`
|
|
|
|
zypper install rust cargo-vendor
|
|
|
|
2. Checkout version
|
|
|
|
git clone https://github.com/sharkdp/bat
|
|
cd bat
|
|
git checkout v0.10.0 (or another version from `git tag --list`)
|
|
|
|
3. Generate archive
|
|
|
|
cargo vendor
|
|
tar -cJf vendor.tar.xz vendor
|