blob: c64d765431ef0aee3b14854e84b1276b098fe7df (
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
|
# Maintainer: Gaoyang Zhang <gy@blurgy.xyz>
pkgname=dt-cli-git
pkgver=git
pkgrel=1
epoch=
pkgdesc="Dotfile management and templating client"
arch=("any")
url="https://dt.cli.rs"
license=('MIT OR Apache 2.0')
groups=()
depends=()
makedepends=(
'git'
'rust'
'cargo'
)
checkdepends=()
optdepends=()
provides=("dt-cli")
conflicts=("dt-cli" "dt-cli-bin")
replaces=()
backup=()
options=()
install=
changelog=
source=("git+https://github.com/blurgyy/dt.git")
sha256sums=("SKIP")
noextract=()
validpgpkeys=()
pkgver() {
git -C dt describe | sed 's:-:.:g'
}
build() {
cd dt
cargo +stable build --bin=dt-cli --release --all-features --locked
}
package() {
cd dt
install -Dm755 "target/release/dt-cli" "$pkgdir/usr/bin/dt-cli"
install -Dm644 "LICENSE-APACHE" "$pkgdir/usr/share/licenses/dt/LICENSE-APACHE"
install -Dm644 "LICENSE-MIT" "$pkgdir/usr/share/licenses/dt/LICENSE-MIT"
}
|