From 66ef4ee1c55a025970228223e5aad2bc7b508bda Mon Sep 17 00:00:00 2001 From: Joel Beckmeyer Date: Tue, 17 Dec 2024 11:17:19 -0500 Subject: [PATCH] New package: php8.4-ast-1.1.2 --- srcpkgs/php8.4-ast/files/README.voidlinux | 2 ++ srcpkgs/php8.4-ast/template | 28 +++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 srcpkgs/php8.4-ast/files/README.voidlinux create mode 100644 srcpkgs/php8.4-ast/template diff --git a/srcpkgs/php8.4-ast/files/README.voidlinux b/srcpkgs/php8.4-ast/files/README.voidlinux new file mode 100644 index 00000000000..40e14f32f8f --- /dev/null +++ b/srcpkgs/php8.4-ast/files/README.voidlinux @@ -0,0 +1,2 @@ +To enable the ast extension please add the following to php.ini: + extension=ast.so diff --git a/srcpkgs/php8.4-ast/template b/srcpkgs/php8.4-ast/template new file mode 100644 index 00000000000..fbbeec05575 --- /dev/null +++ b/srcpkgs/php8.4-ast/template @@ -0,0 +1,28 @@ +# Template file for 'php8.4-ast' +pkgname=php8.4-ast +version=1.1.2 +revision=1 +build_style=gnu-configure +configure_args="--with-php-config=/usr/bin/php-config8.4" +make_check_target="test" +hostmakedepends="php8.4-devel autoconf" +makedepends="php8.4-devel" +depends="php8.4" +checkdepends="${depends}" +short_desc="Exposes the abstract syntax tree generated by PHP" +maintainer="Joel Beckmeyer " +license="BSD-3-Clause" +homepage="https://github.com/nikic/php-ast" +distfiles="https://pecl.php.net/get/ast-${version}.tgz" +checksum=8742427ff7c07ba93f940968f7363972ea040d97d847da3b79b4283c2a369dea +make_check_pre="env NO_INTERACTION=1" + +pre_configure() { + phpize8.4 +} + +do_install() { + make INSTALL_ROOT=${DESTDIR} install + vlicense LICENSE + vdoc "${FILESDIR}/README.voidlinux" +}