mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
30 lines
910 B
Text
30 lines
910 B
Text
# Contributor: Leo <thinkabit.ukim@gmail.com>
|
|
# Contributor: <xmingske@gmail.com>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libevhtp
|
|
pkgver=1.2.18
|
|
pkgrel=6
|
|
pkgdesc="Flexible replacement for libevent's httpd API"
|
|
options="!check" # No testsuite
|
|
url="https://github.com/Yellow-Camper/libevhtp"
|
|
arch="all"
|
|
license="BSD-3-Clause"
|
|
makedepends="cmake libevent-dev openssl-dev>3 oniguruma-dev samurai"
|
|
subpackages="$pkgname-dev"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/Yellow-Camper/libevhtp/archive/$pkgver.tar.gz"
|
|
|
|
build() {
|
|
cmake -B build -G Ninja \
|
|
-DCMAKE_BUILD_TYPE=None \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DBUILD_SHARED_LIBS=ON
|
|
cmake --build build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
}
|
|
|
|
sha512sums="
|
|
e01d771a9358fcf912578f34acd235711a3231029b453781f2992cf51cea26aa3f1eb170d3a834f15d4f9b3f37235fb006853eeee509945e2c18e3a7fbb06ae4 libevhtp-1.2.18.tar.gz
|
|
"
|