summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a2f4ae72794f900ad1b33e614ad6c41202ce0274 (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
#Maintainer: Sam Bazley <sambazley@fastmail.com>
pkgname=ujson-git
pkgver=20200614025758
pkgrel=1
pkgdesc="Json library written in C"
arch=("i686" "x86_64")
url="https://gitlab.com/Niflheimr/ujson"
license=("ZLIB")
makedepends=("cmake")
depends=()
source=("git+https://gitlab.com/Niflheimr/ujson.git")
md5sums=("SKIP")

pkgver() {
    cd ujson
    git show -s --format=%ci HEAD | cut -d' ' -f1-2 | sed -r 's/[^0-9]//g'
}

build() {
    cd "$srcdir/ujson"
    make
}

package() {
    cd ujson
    make DESTDIR="$pkgdir" PREFIX=/usr install
    install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}