summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a1fb01d9a23040d6d18a969634166fe838071f25 (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: Adam Perkowski <adas1per@protonmail.com>
pkgname=himalaya-git
_pkgname=himalaya
pkgver=r713.681837b
pkgrel=1
pkgdesc="CLI to manage emails, written in Rust"
arch=('x86_64' 'aarch64')
url="https://github.com/pimalaya/himalaya"
license=('MIT')
depends=('glibc' 'gcc-libs' 'openssl')
makedepends=('rustup' 'git')
optdepends=('notmuch-runtime: notmuch backend through cargo features' 'gpgme: encryption')
provides=("${_pkgname}")
conflicts=("${_pkgname}")
source=("git+${url}")
md5sums=(SKIP)

pkgver() {
    cd "$_pkgname"
    printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

prepare() {
    export RUSTUP_TOOLCHAIN=stable
    
    cd "$_pkgname"

    cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
}

build() {
    export RUSTUP_TOOLCHAIN=stable
    export CARGO_TARGET_DIR=target

    cd "$_pkgname"

    cargo build --frozen --release --features default
}

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