blob: 22481c8c6fd86e617247c8f87680f5b367fc9069 (
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
48
49
|
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
pkgname=uutils-diffutils
pkgver=0.4.2
pkgrel=2
pkgdesc="Rust implementation of diffutils"
arch=('i686' 'x86_64')
url="https://github.com/uutils/diffutils"
license=('Apache-2.0' 'MIT')
depends=('gcc-libs')
makedepends=('cargo')
source=("$pkgname-$pkgver-src.tar.gz::https://github.com/uutils/diffutils/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('3be767b5417fb5358d6a979603628c9a926367c700c45335e888b605d9d16ef4')
prepare() {
cd "diffutils-$pkgver"
if [ ! -f "Cargo.lock" ]; then
cargo update
fi
cargo fetch
}
check() {
cd "diffutils-$pkgver"
#cargo test \
# --frozen
}
package() {
cd "diffutils-$pkgver"
cargo install \
--locked \
--no-track \
--root "$pkgdir/usr" \
--path .
install -Dm644 "LICENSE-MIT" -t "$pkgdir/usr/share/licenses/uutils-diffutils"
# cannot use custom "uu" prefix
#for path in "$pkgdir/usr/bin"/*; do
# dir=$(dirname $path)
# basename=$(basename $path)
# mv "$dir/$basename" "$dir/uu-$basename"
#done
}
|