summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d70a69e084858f41ed3543b379ee8dcf54851eca (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
# Contributor: Doron Behar <doron.behar@gmail.com>
# Maintainer: groctel <aur@taxorubio.org>
# shellcheck disable=SC2034,SC2154,SC2164

pkgname=compiledb
pkgver=0.10.7
pkgrel=3
pkgdesc="Tool for generating Clang's JSON Compilation Database file for GNU make-based build systems"

replaces=(compiledb-generator)

arch=("any")
url="https://github.com/nickdiego/compiledb"
license=("GPL-3.0-only")

source=("$url/releases/download/$pkgver/$pkgname-$pkgver.tar.gz")
sha256sums=('97752d8810b6977654a11a22cdc41bf6b71473bcdb5da312bc135f36d6af8271')

depends=(
    "python"
    "python-click"
    # AUR dependencies
    "python-bashlex"
    "python-shutilwhich"
)
makedepends=(
    "python-build"
    "python-installer"
    "python-setuptools"
    "python-setuptools-scm"
    "python-wheel"
)
checkdepends=(
    "python-pytest"
)

build () {
    cd "$srcdir/$pkgname-$pkgver"
    python -m build --wheel --no-isolation
}

check () {
    cd "$srcdir/$pkgname-$pkgver"
    pytest
}

package () {
    cd "$srcdir/$pkgname-$pkgver"
    python -m installer --destdir="$pkgdir" dist/*.whl
    install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}