cargo-aur
is a new subcommand for cargo
that produces a release tarball and
PKGBUILD file for a Rust project, so that it can be released on the Arch Linux
User Repository (AUR).
No extra configuration is necessary. As long as your Cargo.toml
has the usual
fields,
a PKGBUILD will be generated with all the necessary sections filled out.
Guess what? cargo-aur
itself is on the AUR! Install it with an AUR-compatible
package manager:
sudo aura -A cargo-aur-bin
... or via cargo
:
cargo install cargo-aur
Navigate to a Rust project, and run:
cargo aur
This will produce a foobar-1.2.3-x86_64.tar.gz
tarball and a PKGBUILD.
If you wish, you can now run makepkg
to ensure that your package actually builds.
```
makepkg ==> Making package: cargo-aur-bin 1.0.0-1 (Wed 10 Jun 2020 08:23:46 PM PDT) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ... etc ... ==> Finished making: cargo-aur-bin 1.0.0-1 (Wed 10 Jun 2020 08:23:47 PM PDT) ```
Notice that the built package itself is postfixed with -bin
, which follows the
AUR standard.
At this point, it is up to you to:
Release
on Github, attaching the original binary tarball
that cargo aur
produced.makepkg --printsrcinfo > .SRCINFO
.Some of these steps may be automated in cargo aur
at a later date if there is
sufficient demand.