aboutsummarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c5326e0181419811432060b22482d7819c120c00 (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
#Maintainer: Daniel Madmon : danielmadmon@protonmail.com
_pkgname=tasker-git
_pkgver=0.0.3
_pkgnamegit=tasker-0.0.3
pkgname=$_pkgname
pkgver=$_pkgver
pkgrel=1
pkgdesc="a package for executing commands on time basis"
arch=('x86_64')
url="https://github.com/DanielMadmon/tasker"
license=('GPL3')
depends=('libthemis' 'kwallet')
makedepends=('cargo' 'git')
provides=("tasker-git=0.0.3")
conflicts=(tasker-git)
source=("https://github.com/DanielMadmon/tasker/archive/refs/tags/v0.0.3.tar.gz")
sha256sums=('SKIP')
#user service should not have user section
#make sure --user service is loaded after kde/gnome keyring (kwalletd5)
#make a loop inside tasker that tries to get the keys only after keyring is running
prepare() {
    cd "${srcdir}/${_pkgnamegit}"
    export RUSTUP_TOOLCHAIN=stable
    cargo fetch --target "$CARCH-unknown-linux-gnu"
}

build() {
    cd "${srcdir}/${_pkgnamegit}"
    export RUSTUP_TOOLCHAIN=stable
    export CARGO_TARGET_DIR=target
    cargo build --frozen --release --all-features
}
package() {
    cd "${srcdir}/${_pkgnamegit}/"
    find target/release \
        -maxdepth 1 \
        -executable \
        -type f \
        -exec install -Dm0755 -t "${pkgdir}/usr/bin/" {} +
}