mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-05 08:17:14 +02:00
38 lines
1 KiB
Text
38 lines
1 KiB
Text
# Contributor: Matthias Ahouansou <matthias@ahouansou.cz>
|
|
# Maintainer: Matthias Ahouansou <matthias@ahouansou.cz>
|
|
pkgname=cargo-sort
|
|
pkgver=1.1.0
|
|
pkgrel=0
|
|
pkgdesc="Check if tables and items in a .toml file are lexically sorted"
|
|
url="https://github.com/DevinR528/cargo-sort"
|
|
arch="all"
|
|
license="MIT OR Apache-2.0"
|
|
makedepends="cargo-auditable"
|
|
depends="cargo"
|
|
source="
|
|
$pkgname-$pkgver.tar.gz::https://github.com/DevinR528/cargo-sort/archive/refs/tags/v$pkgver.tar.gz
|
|
bump-libc.patch
|
|
"
|
|
options="net"
|
|
|
|
prepare() {
|
|
default_prepare
|
|
cargo fetch --target="$CTARGET" --locked
|
|
}
|
|
|
|
build() {
|
|
cargo auditable build --release --frozen
|
|
}
|
|
|
|
check() {
|
|
cargo test --frozen
|
|
}
|
|
|
|
package() {
|
|
install -Dm 755 target/release/cargo-sort "$pkgdir"/usr/bin/cargo-sort
|
|
}
|
|
|
|
sha512sums="
|
|
5ed7e3d1ded56f59fcb13f29b1716b339f8159746263b8b027519032fb80c5f44641d8a43e86e0eff55f7a9aa97cb65e5ee2519772767cdd575cd922f4c819ba cargo-sort-1.1.0.tar.gz
|
|
89da611f0387c279dfc4d54f4828c09135f9542e33fe8c429e56b5d9c54ee8e845e8647da3bc98d6c072cc2b2e02dc35bb2bf71870fe185271ffc6db1a5e8c5e bump-libc.patch
|
|
"
|