summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2ec02b56ae82aaecd2263b229f0d17d4712e8db9 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Maintainer: Michael Picht <mipi@fsfe.org>

_pkgorg=gitlab.com/mipimipi
pkgname=crema-git
_pkgname=crema
pkgver=2.0
pkgrel=1
pkgdesc="Manage custom (remote) repositories"
arch=(any)
url="https://$_pkgorg/$_pkgname"
license=(GPL3)
source=("git+https://$_pkgorg/$_pkgname.git")
validpgpkeys=(11ECD6695134183B3E7AF1C2223AAA374A1D59CE) # Michael Picht <mipi@fsfe.org>
md5sums=(SKIP)
depends=(
    binutils
    devtools
    rsync
)
makedepends=(
    git
    make
    pandoc
)
optdepends=(gnupg)
provides=(crema)
conflicts=(crema)

# aurutils
conflicts+=(
    aurutils
    aurutils-git
)
depends+=(
    jq
    pacutils
    parallel
    wget
)
optdepends+=(
    "bash-completion: bash completion"
    "devtools: aur-chroot"
    "vifm: build file interaction"
)

pkgver() {
    cd "$srcdir/$_pkgname"
    git -C "${_pkgname}" describe --long --tags | sed "s/-/.r/;s/-/./g"
}

build() {
    cd "$srcdir/$_pkgname"
    make

    # aurutils
    cd aurutils
    make DESTDIR="$pkgdir"
}

package() {
    cd "$srcdir/$_pkgname"
    make DESTDIR="$pkgdir" install

    # aurutils
    cd aurutils
    make DESTDIR="$pkgdir" install
}