summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 972e4b443253823780f2834ef12428de864f4509 (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
# Maintainer: Matteo Piccinini (loacker) <matteo.piccinini@gmail.com>
# Contributor: Alim Gokkaya <alimgokkaya@gmail.com>
# Contributor: Seth Girvan <snth@snthhacks.com>

pkgname=librdkafka-git
pkgver=2.6.0.r3.88604ca
pkgrel=1
pkgdesc='The Apache Kafka C/C++ library'
arch=(x86_64)
url='https://github.com/confluentinc/librdkafka'
license=('BSD-2-Clause')
depends=('curl'
         'gcc-libs'
         'glibc'
         'libsasl'
         'lz4'
         'openssl'
         'zlib'
         'zstd')
makedepends=('git'
             'python'
             'rapidjson')
conflicts=('librdkafka')
provides=("${pkgname%-git}=${pkgver}")
source=("${pkgname%-git}::git+$url.git")
changelog="CHANGELOG.md"
b2sums=('SKIP')

pkgver() {
    cd "${pkgname%-git}"
    printf "%s" "$(git describe --long --tags --abbrev=7 | sed 's/^v//;s/\([^-]*-\)g/r\1/;s/-/./g')"
}

build() {
    cd "${pkgname%-git}"
    ./configure --prefix=/usr
    make
}

check() {
    cd "${pkgname%-git}"
    make -k check
}

package() {
    cd "${pkgname%-git}"
    make DESTDIR="$pkgdir" install
    install -vDm644 README.md -t "$pkgdir/usr/share/${pkgname%-git}/"
    install -vDm644 CONFIGURATION.md -t "$pkgdir/usr/share/${pkgname%-git}/"
}