mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-05 04:47:14 +02:00
The version is old but has 30% usage and will be maintained one more year
reverts 514075c652
38 lines
1 KiB
Text
38 lines
1 KiB
Text
# Contributor: Andy Blyler <andy@blyler.cc>
|
|
# Contributor: Fabio Ribeiro <fabiorphp@gmail.com>
|
|
# Maintainer: Andy Postnikov <apostnikov@gmail.com>
|
|
pkgname=php81-pecl-ast
|
|
_extname=ast
|
|
pkgver=1.1.2
|
|
pkgrel=0
|
|
pkgdesc="PHP extension exposing PHP 8.1 abstract syntax tree - PECL"
|
|
url="https://pecl.php.net/package/ast"
|
|
arch="all"
|
|
license="BSD-3-Clause"
|
|
_phpv=81
|
|
_php=php$_phpv
|
|
depends="$_php-common"
|
|
makedepends="$_php-dev"
|
|
source="php-pecl-$_extname-$pkgver.tar.gz::https://pecl.php.net/get/$_extname-$pkgver.tgz"
|
|
builddir="$srcdir"/$_extname-$pkgver
|
|
|
|
build() {
|
|
phpize$_phpv
|
|
./configure --prefix=/usr --with-php-config=/usr/bin/php-config$_phpv
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make NO_INTERACTION=1 REPORT_EXIT_STATUS=1 test TESTS=--show-diff
|
|
}
|
|
|
|
package() {
|
|
make INSTALL_ROOT="$pkgdir" install
|
|
local _confdir="$pkgdir"/etc/$_php/conf.d
|
|
install -d $_confdir
|
|
echo "extension=$_extname" > $_confdir/$_extname.ini
|
|
}
|
|
|
|
sha512sums="
|
|
973a1c68855591fbdd6b0eab08a28fb8acd5cef5e0ba98e5acd8cb747e48ae638e51e38f1633a834415dec330f8d580dc6fcf13f0dfbe40aacc0679c4922257d php-pecl-ast-1.1.2.tar.gz
|
|
"
|