mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-06 13:57:14 +02:00
community/php7-mcrypt: new aport
Replacement for the mcrypt subpackage that was part of PHP7, but has been removed as of PHP 7.2.
This commit is contained in:
parent
ac7e5e0a83
commit
5f871566ea
40
community/php7-mcrypt/APKBUILD
Normal file
40
community/php7-mcrypt/APKBUILD
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
# Maintainer: TBK <alpine@jjtc.eu>
|
||||||
|
pkgname=php7-mcrypt
|
||||||
|
_pkgreal=mcrypt
|
||||||
|
pkgver=1.0.1
|
||||||
|
pkgrel=0
|
||||||
|
pkgdesc="Provides bindings for the unmaintained libmcrypt."
|
||||||
|
url="https://pecl.php.net/package/mcrypt"
|
||||||
|
arch="all"
|
||||||
|
license="PHP"
|
||||||
|
depends=""
|
||||||
|
makedepends="pcre-dev php7-dev autoconf libmcrypt-dev"
|
||||||
|
source="http://pecl.php.net/get/$_pkgreal-$pkgver.tgz"
|
||||||
|
builddir="$srcdir/$_pkgreal-$pkgver"
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "$builddir"
|
||||||
|
|
||||||
|
phpize7
|
||||||
|
./configure --prefix=/usr --with-php-config=php-config7
|
||||||
|
make
|
||||||
|
}
|
||||||
|
|
||||||
|
check() {
|
||||||
|
cd "$builddir"
|
||||||
|
|
||||||
|
# One test fails with PHP 7.2.3
|
||||||
|
rm tests/bug8040.phpt
|
||||||
|
|
||||||
|
make NO_INTERACTION=1 REPORT_EXIT_STATUS=1 test
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "$builddir"
|
||||||
|
|
||||||
|
make INSTALL_ROOT="$pkgdir"/ install
|
||||||
|
install -d "$pkgdir"/etc/php7/conf.d
|
||||||
|
echo "extension=$_pkgreal.so" > "$pkgdir"/etc/php7/conf.d/$_pkgreal.ini
|
||||||
|
}
|
||||||
|
|
||||||
|
sha512sums="1677202715499a41ac6999089257a059106e58cbac06ca8a7dd2e9edd28be5a4118234dd7468110e9e3d7f9de5d099367848fe84bcd06716ea56645c9015c578 mcrypt-1.0.1.tgz"
|
Loading…
Reference in New Issue
Block a user