blob: 094997eb1b53c7c975e55bfaa375df3607e46b52 (
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
|
# Maintainer: Kairat Kubanychbek uulu <https://github.com/ImKairat>
pkgname=gitflow
pkgver=1.0.0_beta.2
pkgrel=1
pkgdesc="A high-performance, type-safe implementation of the Gitflow AVH branching model in Rust."
arch=('x86_64' 'aarch64')
url="https://github.com/ImKairat-Rust-Lab/gitflow"
license=('GPL-3.0-only')
depends=('gcc-libs')
makedepends=('cargo' 'git')
provides=('gitflow')
conflicts=('gitflow')
options=('!lto')
source=("git+https://github.com/ImKairat-Rust-Lab/gitflow.git#tag=v1.0.0-beta.2")
sha256sums=('SKIP')
build() {
cd gitflow
cargo build --release --locked
}
package() {
cd gitflow
install -Dm755 "target/release/gitflow" "$pkgdir/usr/bin/gitflow"
}
|