From 5f871566ea0b505c40bb1eb491b3a9ede4e3ba0c Mon Sep 17 00:00:00 2001 From: TBK Date: Tue, 27 Mar 2018 15:27:52 +0200 Subject: [PATCH] community/php7-mcrypt: new aport Replacement for the mcrypt subpackage that was part of PHP7, but has been removed as of PHP 7.2. --- community/php7-mcrypt/APKBUILD | 40 ++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 community/php7-mcrypt/APKBUILD diff --git a/community/php7-mcrypt/APKBUILD b/community/php7-mcrypt/APKBUILD new file mode 100644 index 00000000000..36dc5ec4818 --- /dev/null +++ b/community/php7-mcrypt/APKBUILD @@ -0,0 +1,40 @@ +# Maintainer: TBK +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"