From 99e05aa22b1fb067f79e6d070a7d773615ef245f Mon Sep 17 00:00:00 2001 From: henderkes Date: Sun, 24 May 2026 20:55:11 +0700 Subject: [PATCH] ext: add ext-fastchart and ext-fastjson registry entries Register two iliaal/fastchart and iliaal/fastjson PHP extensions sourced from ghtar, extracted into php-src/ext/{fastchart,fastjson}. Both target Linux and Darwin. fastchart depends on freetype and suggests libpng, libjpeg, libwebp. --- config/pkg/ext/ext-fastchart.yml | 20 ++++++++++++++++++++ config/pkg/ext/ext-fastjson.yml | 14 ++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 config/pkg/ext/ext-fastchart.yml create mode 100644 config/pkg/ext/ext-fastjson.yml diff --git a/config/pkg/ext/ext-fastchart.yml b/config/pkg/ext/ext-fastchart.yml new file mode 100644 index 00000000..0abbc892 --- /dev/null +++ b/config/pkg/ext/ext-fastchart.yml @@ -0,0 +1,20 @@ +ext-fastchart: + type: php-extension + artifact: + source: + type: ghtar + repo: iliaal/fastchart + extract: php-src/ext/fastchart + prefer-stable: true + metadata: + license-files: [LICENSE] + depends: + - freetype + suggests: + - libpng + - libjpeg + - libwebp + php-extension: + os: + - Linux + - Darwin diff --git a/config/pkg/ext/ext-fastjson.yml b/config/pkg/ext/ext-fastjson.yml new file mode 100644 index 00000000..4644e820 --- /dev/null +++ b/config/pkg/ext/ext-fastjson.yml @@ -0,0 +1,14 @@ +ext-fastjson: + type: php-extension + artifact: + source: + type: ghtar + repo: iliaal/fastjson + extract: php-src/ext/fastjson + prefer-stable: true + metadata: + license-files: [LICENSE] + php-extension: + os: + - Linux + - Darwin