22 lines
650 B
Bash
22 lines
650 B
Bash
# Template file for 'cargo-about'
|
|
pkgname=cargo-about
|
|
version=0.3.0
|
|
revision=1
|
|
build_style=cargo
|
|
short_desc="Cargo plugin to generate list of all licenses for a crate"
|
|
maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
|
|
license="MIT, Apache-2.0"
|
|
homepage="https://github.com/EmbarkStudios/cargo-about"
|
|
distfiles="https://github.com/EmbarkStudios/cargo-about/archive/${version}.tar.gz"
|
|
checksum=01c5c78e4486b6de5694c0f140cab4b0f6efb807736a64602636a2266e2f015b
|
|
|
|
if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
|
|
broken="broken on architectures without atomic8"
|
|
fi
|
|
|
|
post_install() {
|
|
vlicense LICENSE-APACHE
|
|
vlicense LICENSE-MIT
|
|
vdoc README.md
|
|
}
|