blob: a74159de1b3beb835caadbc755f28a03d6de711c (
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
|
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
pkgname=mcfly-git
pkgver=0.8.0.r5.g2e22bab
pkgrel=1
pkgdesc="Fly through your shell history"
arch=('i686' 'x86_64')
url="https://github.com/cantino/mcfly"
license=('MIT')
depends=('gcc-libs')
makedepends=('git' 'rust')
provides=("mcfly=$pkgver")
conflicts=('mcfly')
source=("git+https://github.com/cantino/mcfly.git")
sha256sums=('SKIP')
prepare() {
cd "mcfly"
if [ ! -f "Cargo.lock" ]; then
cargo update
fi
cargo fetch
}
pkgver() {
cd "mcfly"
_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 "mcfly"
cargo test \
--frozen
}
package() {
cd "mcfly"
cargo install \
--locked \
--no-track \
--root "$pkgdir/usr" \
--path .
install -Dm644 "LICENSE" -t "$pkgdir/usr/share/licenses/mcfly"
}
|