package/zix: new package

Needed for the upcoming bump of sord from 0.16.12 to 0.16.22:
ec186c111b

Build-tested using this defconfig:

BR2_PACKAGE_ZIX=y

                             arm-aarch64 [ 1/32]: OK
                   bootlin-aarch64-glibc [ 2/32]: OK
               bootlin-aarch64-glibc-old [ 3/32]: OK
               bootlin-arcle-hs38-uclibc [ 4/32]: OK
                    bootlin-armv5-uclibc [ 5/32]: OK
                     bootlin-armv7-glibc [ 6/32]: OK
                   bootlin-armv7m-uclibc [ 7/32]: OK
                      bootlin-armv7-musl [ 8/32]: OK
                bootlin-m68k-5208-uclibc [ 9/32]: OK
               bootlin-m68k-68040-uclibc [10/32]: OK
             bootlin-microblazeel-uclibc [11/32]: OK
                  bootlin-mips64el-glibc [12/32]: OK
                bootlin-mipsel32r6-glibc [13/32]: OK
                   bootlin-mipsel-uclibc [14/32]: OK
                 bootlin-openrisc-uclibc [15/32]: OK
        bootlin-powerpc64le-power8-glibc [16/32]: OK
           bootlin-powerpc-e500mc-uclibc [17/32]: OK
                   bootlin-riscv32-glibc [18/32]: OK
                   bootlin-riscv64-glibc [19/32]: OK
                    bootlin-riscv64-musl [20/32]: OK
                 bootlin-s390x-z13-glibc [21/32]: OK
                      bootlin-sh4-uclibc [22/32]: OK
                   bootlin-sparc64-glibc [23/32]: OK
                    bootlin-sparc-uclibc [24/32]: OK
                    bootlin-x86-64-glibc [25/32]: OK
                     bootlin-x86-64-musl [26/32]: OK
                   bootlin-x86-64-uclibc [27/32]: OK
                   bootlin-x86-i686-musl [28/32]: OK
                   bootlin-xtensa-uclibc [29/32]: OK
                            br-arm-basic [30/32]: OK
                    br-arm-full-nothread [31/32]: OK
                      br-arm-full-static [32/32]: OK

32 builds, 0 skipped, 0 build failed, 0 legal-info failed, 0 show-info failed

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
Bernd Kuhls
2026-04-05 13:53:52 +02:00
committed by Julien Olivain
parent d28579e957
commit 5ce17bc7d6
5 changed files with 34 additions and 0 deletions

View File

@@ -537,6 +537,7 @@ F: package/x264/
F: package/x265/
F: package/xmrig/
F: package/ytree/
F: package/zix/
F: package/znc/
F: support/testing/tests/package/test_perl_html_parser.py

View File

@@ -1916,6 +1916,7 @@ menu "JSON/XML"
source "package/xml-security-c/Config.in"
source "package/yajl/Config.in"
source "package/yaml-cpp/Config.in"
source "package/zix/Config.in"
endmenu
menu "Logging"

6
package/zix/Config.in Normal file
View File

@@ -0,0 +1,6 @@
config BR2_PACKAGE_ZIX
bool "zix"
help
A lightweight C library for reading and writing RDF
https://gitlab.com/drobilla/zix

4
package/zix/zix.hash Normal file
View File

@@ -0,0 +1,4 @@
# Locally calculated after checking signature
# https://download.drobilla.net/zix-0.8.0.tar.xz.sig
sha256 e9b6fe3ede984fa53f2edcebdabb35fb99ace807722772156aea49c079cad191 zix-0.8.0.tar.xz
sha256 1314cc14fb947491491c517c533ac7de4f6798585f922a472358082c25ac1881 COPYING

22
package/zix/zix.mk Normal file
View File

@@ -0,0 +1,22 @@
################################################################################
#
# zix
#
################################################################################
ZIX_VERSION = 0.8.0
ZIX_SITE = https://download.drobilla.net
ZIX_SOURCE = zix-$(ZIX_VERSION).tar.xz
ZIX_LICENSE = ISC
ZIX_LICENSE_FILES = COPYING
ZIX_INSTALL_STAGING = YES
ZIX_CONF_OPTS += -Dbenchmarks=disabled -Ddocs=disabled -Dtests=disabled
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
ZIX_CONF_OPTS += -Dthreads=enabled
else
ZIX_CONF_OPTS += -Dthreads=disabled
endif
$(eval $(meson-package))