mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-04 21:32:38 +02:00
55 lines
1.2 KiB
Plaintext
55 lines
1.2 KiB
Plaintext
# Contributor: Gavin Henry <ghenry@sentrypeer.org>
|
|
# Maintainer: Gavin Henry <ghenry@sentrypeer.org>
|
|
pkgname=sentrypeer
|
|
pkgver=3.0.2
|
|
pkgrel=0
|
|
pkgdesc="Honeypot for a distributed p2p list of bad actor IP addresses and phone numbers"
|
|
url="https://sentrypeer.org/"
|
|
# ppc64le: fails tests
|
|
arch="all !ppc64le !x86 !armhf !armv7"
|
|
license="GPL-2.0-only OR GPL-3.0-only"
|
|
makedepends="
|
|
autoconf
|
|
autoconf-archive
|
|
automake
|
|
chrpath
|
|
curl-dev
|
|
jansson-dev
|
|
libmicrohttpd-dev
|
|
libosip2-dev
|
|
opendht-dev
|
|
pcre2-dev
|
|
sqlite-dev
|
|
util-linux-dev
|
|
"
|
|
checkdepends="cmocka-dev"
|
|
subpackages="$pkgname-doc"
|
|
source="https://github.com/SentryPeer/SentryPeer/releases/download/v$pkgver/sentrypeer-$pkgver.tar.gz"
|
|
options="!check" # needs net
|
|
|
|
build() {
|
|
CFLAGS="$CFLAGS -flto=auto" \
|
|
CXXFLAGS="$CXXFLAGS -flto=auto" \
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make check || {
|
|
cat test-suite.log
|
|
return 1
|
|
}
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
chrpath -d "$pkgdir"/usr/bin/sentrypeer
|
|
}
|
|
|
|
sha512sums="
|
|
6ec2c0ccd3e08cc4e711261d3c7135bdd0b699f4d92d982d31f7e664dfd13ff4a15a6c7106bdca4b65fa7c663f526985e530ab2bd42ee43b5695455c8f28b660 sentrypeer-3.0.2.tar.gz
|
|
"
|