mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-11-02 01:11:31 +01:00
49 lines
1.1 KiB
Plaintext
49 lines
1.1 KiB
Plaintext
# Contributor: Valery Kartel <valery.kartel@gmail.com>
|
|
# Maintainer: Andy Postnikov <apostnikov@gmail.com>
|
|
pkgname=php83-pecl-phalcon
|
|
_extname=phalcon
|
|
pkgver=5.8.0
|
|
pkgrel=0
|
|
pkgdesc="High performance, full-stack PHP 8.3 framework delivered as a C extension"
|
|
url="https://phalcon.io/"
|
|
arch="all"
|
|
license="BSD-3-Clause"
|
|
_phpv=83
|
|
_php=php$_phpv
|
|
depends="
|
|
$_php-curl
|
|
$_php-fileinfo
|
|
$_php-gettext
|
|
$_php-mbstring
|
|
$_php-openssl
|
|
$_php-pdo
|
|
$_php-session
|
|
$_php-pecl-psr
|
|
"
|
|
makedepends="$_php-dev"
|
|
source="php-$_extname-$pkgver.tgz::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() {
|
|
# no tests provided
|
|
$_php -d extension=modules/$_extname.so --ri $_extname
|
|
}
|
|
|
|
package() {
|
|
make INSTALL_ROOT="$pkgdir" install
|
|
|
|
local _confdir="$pkgdir"/etc/$_php/conf.d
|
|
install -d $_confdir
|
|
echo "extension=$_extname" > $_confdir/$_extname.ini
|
|
}
|
|
|
|
sha512sums="
|
|
7fda99de7ac4a5ea850d38ee590003fab89a511d44f738fccb8d89e6fffd30ce5bede03db44658c3f89751c3bd36150676a0b4a4d95d4698a3aab132bced6bc9 php-phalcon-5.8.0.tgz
|
|
"
|