mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
45 lines
1.1 KiB
Plaintext
45 lines
1.1 KiB
Plaintext
# Maintainer: Stuart Cardall <developer@it-offshore.co.uk>
|
|
# Contributor: Valery Kartel <valery.kartel@gmail.com>
|
|
_php=php5
|
|
pkgname=${_php}-apcu
|
|
_pkgreal=apcu
|
|
# release 5 is php7+
|
|
pkgver=4.0.11
|
|
_pkgver=${pkgver/_rc/RC}
|
|
pkgrel=1
|
|
pkgdesc="PHP extension APC User Cache"
|
|
url="http://pecl.php.net/package/$_pkgreal"
|
|
arch="all"
|
|
license="PHP"
|
|
depends=
|
|
pecldepends="${_php}-dev autoconf"
|
|
makedepends="$pecldepends pcre-dev"
|
|
source="http://pecl.php.net/get/$_pkgreal-$_pkgver.tgz"
|
|
|
|
_builddir="$srcdir"/$_pkgreal-$_pkgver
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
phpize5
|
|
./configure \
|
|
--prefix=/usr \
|
|
--with-php-config=/usr/bin/php-config5
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$_builddir"
|
|
# test failures reported to php
|
|
# the test asks for an email address due to this failure
|
|
# make test
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make INSTALL_ROOT="$pkgdir"/ install
|
|
install -d "$pkgdir"/etc/$_php/conf.d
|
|
echo "extension=$_pkgreal.so" > "$pkgdir"/etc/$_php/conf.d/$_pkgreal.ini
|
|
}
|
|
|
|
sha512sums="e3b97066240e33850419e96f0fd9df0e66ee3b0fa238c418e07ac639d07439e9edfa1696e56a620e33f1ffc0993c57bde585b0c170b22995e7d5c0ae550b7899 apcu-4.0.11.tgz"
|