summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3d9eec0a13763cfd201e1d7bd5b298793244978e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
pkgname=dura-git
_pkgname=dura
pkgver=0.1.0
pkgrel=1
pkgdesc='Dura is a background process that watches your Git repositories and commits your uncommitted changes'
arch=(x86_64)
url=https://github.com/tkellogg/dura
license=(Apache)
makedepends=(git cargo)
provides=(dura)
source=(git+$url)
sha512sums=('SKIP')

build() {
  cd $_pkgname
  cargo build --locked --release
}

package() {
  cd $_pkgname
  install -D target/release/dura -t "$pkgdir"/usr/bin
}