diff options
| author | Andy Postnikov <apostnikov@gmail.com> | 2019-12-15 22:28:35 +0200 |
|---|---|---|
| committer | Andy Postnikov <apostnikov@gmail.com> | 2019-12-16 18:38:34 +0200 |
| commit | 377d3f798a1a549a829f542b84af8cd13630edf3 (patch) | |
| tree | b0065bb93876f21e59d35179c8a5283538fa210e /testing | |
| parent | d6c864da14745ec7ccf387258d4335ba9000daa8 (diff) | |
| download | aports-377d3f798a1a549a829f542b84af8cd13630edf3.tar.bz2 aports-377d3f798a1a549a829f542b84af8cd13630edf3.tar.xz | |
testing/php7-pecl-uuid: modernize, fix license, add missing dependency
Diffstat (limited to 'testing')
| -rw-r--r-- | testing/php7-pecl-uuid/APKBUILD | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/testing/php7-pecl-uuid/APKBUILD b/testing/php7-pecl-uuid/APKBUILD index 2c22447b58..09d8a1ecf5 100644 --- a/testing/php7-pecl-uuid/APKBUILD +++ b/testing/php7-pecl-uuid/APKBUILD @@ -3,34 +3,29 @@ pkgname=php7-pecl-uuid _pkgreal=uuid pkgver=1.1.0 -_pkgver=${pkgver} -pkgrel=0 +pkgrel=1 pkgdesc="A wrapper around libuuid from the ext2utils project." -url="https://pecl.php.net/package/$_pkgreal" +url="https://pecl.php.net/package/uuid" arch="all" -license="PHP" -depends="" -pecldepends="php7-dev autoconf util-linux-dev" -makedepends="$pecldepends" -source="https://pecl.php.net/get/$_pkgreal-$_pkgver.tgz" -builddir="$srcdir/$_pkgreal-$_pkgver" +license="LGPL-2.1-or-later" +depends="php7-common" +makedepends="php7-dev autoconf re2c util-linux-dev" +source="https://pecl.php.net/get/$_pkgreal-$pkgver.tgz" +builddir="$srcdir/$_pkgreal-$pkgver" provides="php7-uuid=$pkgver-r$pkgrel" # for backward compatibility replaces="php7-uuid" # for backward compatibility build() { - cd "$builddir" phpize7 ./configure --prefix=/usr --with-php-config=php-config7 make } check() { - cd "$builddir" 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/50_$_pkgreal.ini |
