blob: c7d94c7171cf9814c7588b28ef42ade42f4ca289 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# -*- mode: Shell-script; eval: (setq indent-tabs-mode 't); eval: (setq tab-width 4) -*-
# Maintainer: Dominic Meiser [git at msrd0 dot de]
_crate="ellipse-bin"
pkgname="ellipse"
pkgver=1.0.0
pkgrel=1
pkgdesc='Command that truncates and ellipses strings in a human-friendly way'
url='https://crates.io/crates/ellipse-bin'
license=('GPL-3.0-only')
depends=('gcc-libs')
makedepends=('cargo')
source=("$_crate-1.0.0.tar.gz::https://crates.io/api/v1/crates/ellipse-bin/1.0.0/download")
sha512sums=('40b4700f87680cf81b0238ba63e95068877c96d36ffcaac62d361989bb351a10562941800f0b8f7adb66477a7eebd02322f359e3f52fb6e86fd48befe1ed9b69')
# Tier 1 architectures supported by Rust (https://doc.rust-lang.org/nightly/rustc/platform-support.html#tier-1)
arch=('aarch64' 'i686' 'x86_64')
prepare() {
cd "$srcdir/$_crate-1.0.0"
export RUSTUP_TOOLCHAIN=stable
cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
}
build() {
cd "$srcdir/$_crate-1.0.0"
export RUSTUP_TOOLCHAIN=stable
export CARGO_TARGET_DIR=target
CFLAGS+=" -ffat-lto-objects"
cargo build \
--offline \
--locked \
--release
}
package() {
cd "$srcdir/$_crate-1.0.0"
install -Dm755 "target/release/ellipse" -t "$pkgdir/usr/bin"
install -Dm644 'LICENSE' -t "$pkgdir/usr/share/licenses/$pkgname/"
}
|