PKGBUILDs/community/opendht/PKGBUILD

59 lines
1.6 KiB
Bash
Raw Normal View History

2019-02-04 14:54:09 +00:00
# Maintainer: Bruno Pagani <archange@archlinux.org>
2021-10-19 00:34:06 +00:00
# Contributor: Baptiste Jonglez <baptiste--aur at jonglez dot org>
2018-02-08 00:34:26 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - set -DOPENDHT_LTO=OFF
2021-10-19 00:34:06 +00:00
# - move cppunit to makedepends from checkdepends
2021-10-20 02:30:19 +00:00
buildarch=28
2018-02-08 00:34:26 +00:00
pkgname=opendht
epoch=1
pkgver=2.3.1.r7+ga89e4d62
pkgrel=4
2020-10-02 01:53:18 +00:00
pkgdesc="C++14 Distributed Hash Table (DHT) implementation"
2019-04-14 22:29:34 +00:00
arch=(x86_64)
2018-02-08 00:34:26 +00:00
url="https://github.com/savoirfairelinux/opendht"
2019-04-14 22:29:34 +00:00
license=(GPL3)
2021-10-19 00:34:06 +00:00
depends=(glibc gnutls nettle readline argon2 jsoncpp libjsoncpp.so fmt http-parser openssl)
makedepends=(git cmake msgpack-c msgpack-cxx asio restinio cython python-setuptools cppunit)
2019-04-14 22:29:34 +00:00
optdepends=('python: to use the Python bindings')
_commit=a89e4d626eae388bfd4049faadcb5deec58fb6fc
source=(git+${url}#commit=${_commit})
sha256sums=(SKIP)
2021-07-13 12:41:31 +00:00
pkgver() {
cd ${pkgname}
git describe --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./;s/-/+/'
2021-07-13 12:41:31 +00:00
}
2018-02-08 00:34:26 +00:00
build() {
cmake -B build -S ${pkgname} \
2018-04-13 00:04:18 +00:00
-DCMAKE_BUILD_TYPE=None \
2019-02-04 14:54:09 +00:00
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
2018-04-13 00:04:18 +00:00
-DOPENDHT_DOCUMENTATION=OFF \
2021-10-19 00:34:06 +00:00
-DOPENDHT_TESTS=ON \
2018-02-08 00:34:26 +00:00
-DOPENDHT_STATIC=OFF \
-DOPENDHT_SYSTEMD=ON \
2020-10-02 01:53:18 +00:00
-DOPENDHT_SYSTEMD_UNIT_FILE_LOCATION=/usr/lib/systemd/system/ \
-DOPENDHT_LTO=ON \
2019-03-26 18:44:33 +00:00
-DOPENDHT_INDEX=ON \
2018-02-08 00:34:26 +00:00
-DOPENDHT_PYTHON=ON \
2020-10-02 01:53:18 +00:00
-DOPENDHT_HTTP=ON \
2018-02-08 00:34:26 +00:00
-DOPENDHT_PROXY_SERVER=ON \
-DOPENDHT_PROXY_CLIENT=ON \
-DOPENDHT_PUSH_NOTIFICATIONS=ON \
-DOPENDHT_LTO=OFF
2020-12-22 01:31:14 +00:00
make -C build
2018-02-08 00:34:26 +00:00
}
2021-10-19 00:34:06 +00:00
check() {
# https://github.com/savoirfairelinux/opendht/issues/568
make -C build test || echo "Tests failed"
}
2018-04-13 00:04:18 +00:00
2018-02-08 00:34:26 +00:00
package() {
2020-12-22 01:31:14 +00:00
make -C build DESTDIR="${pkgdir}" install
2018-02-08 00:34:26 +00:00
}