blob: 934a8aa1decd639d30aa7ab6a1bfc64727b5b1fe (
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
|
pkgname=php82-xdebug
_phpbase=82
_extname=xdebug
pkgver=3.4.0
pkgrel=1
pkgdesc="Xdebug is an extension for PHP to assist with debugging and development for php${_phpbase}"
arch=("x86_64")
url="https://xdebug.org/"
license=('Xdebug')
depends=("php${_phpbase}")
makedepends=()
source=("http://pecl.php.net/get/$_extname-$pkgver.tgz")
backup=("etc/php${_phpbase}/conf.d/$_extname.ini")
build() {
cd "$srcdir/$_extname-$pkgver"
phpize${_phpbase}
./configure --with-php-config=php-config${_phpbase}
make
}
package() {
cd "$srcdir/$_extname-$pkgver"
install -m0755 -d "$pkgdir/etc/php${_phpbase}/conf.d/"
install -m0644 -D "LICENSE" "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
echo ";zend_extension=$_extname.so" > "$pkgdir/etc/php${_phpbase}/conf.d/$_extname.ini"
chmod 0644 "$pkgdir/etc/php${_phpbase}/conf.d/$_extname.ini"
install -m0755 -D ".libs/$_extname.so" "$pkgdir$(php-config${_phpbase} --extension-dir)/$_extname.so"
}
sha256sums=('89667b8d04aaf04c023eb109900e1cce97ca39f97f2f3f24199630cc0e1cc77d')
|