blob: cd05be4c780a864387ea82c0b054b33a7247ecba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Maintainer: Leo <i@setuid0.dev>
_extname=ast
pkgname=php-$_extname
pkgver=1.1.2
pkgrel=1
pkgdesc='Extension exposing PHP 7 abstract syntax tree'
arch=('x86_64')
url="https://pecl.php.net/package/$_extname"
license=('BSD')
depends=('php>=7.1')
source=(
"$pkgname-$pkgver.tar.gz::http://pecl.php.net/get/$_extname-$pkgver.tgz"
)
sha256sums=('8742427ff7c07ba93f940968f7363972ea040d97d847da3b79b4283c2a369dea')
prepare() {
cd $srcdir/$_extname-$pkgver
# for i in $srcdir/*.patch;
# do patch -p1 < $i;
# done
echo "extension=$_extname" > $_extname.ini
phpize
./configure \
--prefix=/usr \
--with-ast
}
build() {
cd $srcdir/$_extname-$pkgver
make
}
check() {
cd $srcdir/$_extname-$pkgver
NO_INTERACTION=1 make test
}
package() {
cd $srcdir/$_extname-$pkgver
make INSTALL_ROOT=$pkgdir install
install -Dm644 $_extname.ini "$pkgdir/etc/php/conf.d/$_extname.ini"
}
|