blob: 017fbcbb39b1d3ce60ba0432d83dc458478f1595 (
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
|
# Maintainer: Caleb Maclennan <caleb@alerque.com>
pkgname=gitbutler
pkgver=0.14.1
pkgrel=1
url="https://github.com/${pkgname}app/$pkgname"
pkgdesc='Version control client, backed by Git, powered by Tauri/Rust/Svelte'
arch=(x86_64)
license=(LicenseRef-FSL-1.1-MIT)
depends=(gtk4
webkit2gtk-4.1)
makedepends=(cargo-nightly
cargo-tauri
cmake
nodejs
pnpm)
options=(!lto)
_archive="$pkgname-release-$pkgver"
source=("$url/archive/release%2F$pkgver/$_archive.tar.gz")
sha256sums=('4d58f250f8a7ca8c5dbbbec8bdee49a1d5941fa981e3caed52017cece050ecec')
prepare() {
cd "$_archive"
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
pnpm install --frozen-lockfile
}
build() {
cd "$_archive"
export RUSTFLAGS+=' --cfg tokio_unstable'
env \
RUSTUP_TOOLCHAIN=nightly \
CARGO_TARGET_DIR=target \
cargo build --release
# cargo tauri build --bundles deb
}
package() {
cd "$_archive"
local target="target/release/$pkgname"
install -Dm0755 -t "$pkgdir/usr/bin/" "$target"-{tauri,git-askpass,git-setsid}
}
|