simdjson 1 3.12.3-1

This commit is contained in:
2025-05-17 14:18:52 +03:00
parent 4f00eac717
commit e7ae447166
2 changed files with 63 additions and 7 deletions

View File

@ -1,6 +1,6 @@
name='libnghttp3'
version='1.9.0'
release='1'
release='2'
desc='HTTP/3 library written in C.'
desc_ru='Библиотека HTTP/3, написанная на C.'
homepage='https://github.com/ngtcp2/nghttp3'
@ -14,6 +14,7 @@ conflicts=('libnghttp3' 'libnghttp3-devel')
deps=(
'glibc'
)
build_deps=(
'autoconf'
'automake'
@ -23,9 +24,6 @@ build_deps=(
sources=("https://github.com/ngtcp2/nghttp3/releases/download/v$version/nghttp3-$version.tar.xz")
checksums=('SKIP')
options=(!lto)
backup=('etc/gitea/app.ini')
prepare() {
cd nghttp3-$version
autoreconf -i
@ -35,12 +33,12 @@ build() {
cd nghttp3-$version
./configure \
--prefix=/usr
make
make -j$(($(nproc) - 1))
}
check() {
cd nghttp3-$version
make check
make check -j$(($(nproc) - 1))
}
package() {
@ -51,6 +49,6 @@ package() {
files() {
printf '"%s" ' ./usr/include/nghttp3/*
echo ./usr/lib64/**/*
printf '"%s" ' ./usr/lib64/**/*
echo ./usr/share/licenses/COPYING
}