blob: a708bf5a3e3166b4d3c58a61a4cb04e462f18da1 (
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: Abraham Toriz <categulario at gmail dot com>
# Maintainer: kedap <kedap at protonmail dot com>
pkgname=tiempo
_reponame=tiempo-rs
pkgver=1.11.1
pkgrel=1
pkgdesc="A command line time tracker application"
arch=('i686' 'x86_64')
url="https://gitlab.com/categulario/tiempo-rs"
license=('GPL3')
depends=()
optdepends=('sqlite: for manually editing the database')
makedepends=('cargo' 'git' 'python-sphinx' 'python-tomlkit' 'gzip' 'make')
provides=('tiempo')
conflicts=('tiempo-git' 'tiempo-bin')
source=("https://gitlab.com/categulario/$_reponame/-/archive/v$pkgver/$pkgname-rs-v$pkgver.tar.gz")
sha256sums=('083c7c48054b4e7625d2c5a7d4775859cf15f0138fe5bd06dda4f51c8e74be0a')
build() {
cd "$_reponame-v$pkgver"
cargo build --release --locked
cd docs
make man
gzip build/man/tiempo.1
}
package() {
cd "$_reponame-v$pkgver"
install -Dm755 target/release/t "${pkgdir}"/usr/bin/t
install -Dm644 README.md "$pkgdir"/usr/share/doc/tiempo/README.md
install -Dm644 LICENSE "$pkgdir"/usr/share/doc/tiempo/LICENSE
install -Dm644 CHANGELOG.md "$pkgdir"/usr/share/doc/tiempo/CHANGELOG.md
install -Dm644 completions/bash/t "$pkgdir"/usr/share/bash-completion/completions/t
install -Dm644 completions/fish/t.fish "$pkgdir"/usr/share/fish/vendor_completions.d/t.fish
install -Dm644 completions/zsh/_t "$pkgdir"/usr/share/zsh/site-functions/_t
install -Dm644 docs/build/man/tiempo.1.gz "$pkgdir"/usr/share/man/man1/tiempo.1.gz
ln -s "$pkgdir"/usr/share/man/man1/tiempo.1.gz "$pkgdir"/usr/share/man/man1/t.1.gz
}
|