blob: f991a082db7c7fb21118abc600f4d09989acdb25 (
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
50
51
52
53
54
55
56
57
58
|
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
# Previous maintainer: mocihan <ly50247@126.com>
# Contributor: Fredy GarcĂa <frealgagu at gmail dot com>
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
pkgname=just-git
pkgver=0.9.4.r322.g9f03441e
pkgrel=2
pkgdesc="Just a command runner"
arch=('i686' 'x86_64')
url="https://just.systems/"
license=('custom')
depends=('gcc-libs')
makedepends=('git' 'rust')
provides=("just=$pkgver")
conflicts=('just')
source=("git+https://github.com/casey/just.git")
sha256sums=('SKIP')
prepare() {
cd "just"
if [ ! -f "Cargo.lock" ]; then
cargo update
fi
cargo fetch
}
pkgver() {
cd "just"
_tag=$(git tag -l --sort -v:refname | sed '/rc[0-9]*/d' | head -n1)
_rev=$(git rev-list --count $_tag..HEAD)
_hash=$(git rev-parse --short HEAD)
printf "%s.r%s.g%s" "$_tag" "$_rev" "$_hash" | sed 's/^v//'
}
check() {
cd "just"
cargo test \
--frozen
}
package() {
cd "just"
cargo install \
--locked \
--no-track \
--root "$pkgdir/usr" \
--path .
install -Dm644 "man/just.1" -t "${pkgdir}/usr/share/man/man1"
install -Dm644 {README,GRAMMAR}.md -t "${pkgdir}/usr/share/doc/just"
install -Dm644 "LICENSE" -t "$pkgdir/usr/share/licenses/just"
}
|