blob: 82aba0b5ddf7624ca52202d9ffa0f79284feed9c (
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
|
# Maintainer: blinry <mail@blinry.org>
pkgname=ethersync-git
pkgver=r634.9688e5c
pkgrel=1
pkgdesc="Enables real-time co-editing of local text files."
arch=('i686' 'x86_64')
url="https://github.com/ethersync/ethersync"
license=('AGPL-3.0-or-later')
makedepends=(git cargo)
source=("$pkgname::git+https://github.com/ethersync/ethersync")
sha1sums=('SKIP')
prepare() {
export RUSTUP_TOOLCHAIN=stable
cd "$pkgname/daemon"
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
}
build() {
export RUSTUP_TOOLCHAIN=stable
export CARGO_TARGET_DIR=target
cd "$pkgname/daemon"
cargo build --frozen --release
}
check() {
export RUSTUP_TOOLCHAIN=stable
cd "$pkgname/daemon"
cargo test --frozen
}
pkgver() {
cd "$pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
}
package() {
cd "$pkgname/daemon"
install -Dm755 "target/release/ethersync" "$pkgdir/usr/bin/ethersync"
}
|