backports/php8-pecl-inotify: new aport
This commit is contained in:
parent
37d1ce98d5
commit
7bff872938
1 changed files with 33 additions and 0 deletions
33
backports/php8-pecl-inotify/APKBUILD
Normal file
33
backports/php8-pecl-inotify/APKBUILD
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
# Contributor: Fabio Ribeiro <fabiorphp@gmail.com>
|
||||||
|
# Maintainer: Andy Postnikov <apostnikov@gmail.com>
|
||||||
|
pkgname=php8-pecl-inotify
|
||||||
|
_extname=inotify
|
||||||
|
pkgver=3.0.0
|
||||||
|
pkgrel=0
|
||||||
|
pkgdesc="Inotify bindings for PHP 8"
|
||||||
|
url="https://pecl.php.net/package/inotify"
|
||||||
|
arch="all"
|
||||||
|
license="PHP-3.01"
|
||||||
|
depends="php8-common"
|
||||||
|
makedepends="php8-dev"
|
||||||
|
source="php-pecl-$_extname-$pkgver.tgz::https://pecl.php.net/get/$_extname-$pkgver.tgz"
|
||||||
|
builddir="$srcdir"/$_extname-$pkgver
|
||||||
|
|
||||||
|
build() {
|
||||||
|
phpize8
|
||||||
|
./configure --prefix=/usr --with-php-config=php-config8
|
||||||
|
make
|
||||||
|
}
|
||||||
|
|
||||||
|
check() {
|
||||||
|
make NO_INTERACTION=1 REPORT_EXIT_STATUS=1 test
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
make INSTALL_ROOT="$pkgdir" install
|
||||||
|
local _confdir="$pkgdir"/etc/php8/conf.d
|
||||||
|
install -d $_confdir
|
||||||
|
echo "extension=$_extname" > $_confdir/70_$_extname.ini
|
||||||
|
}
|
||||||
|
|
||||||
|
sha512sums="f8b29f8611f16b92136ab8de89181c254bba1abee1e61cac2344440567a3155aae4b9b54b10fdb1b0254fd7a96da8c14b7dc5c9f7f08a03db30ab1645aca1eee php-pecl-inotify-3.0.0.tgz"
|
Loading…
Reference in a new issue