diff options
author | Andy Postnikov <apostnikov@gmail.com> | 2019-12-15 22:31:14 +0200 |
---|---|---|
committer | Andy Postnikov <apostnikov@gmail.com> | 2019-12-16 18:38:34 +0200 |
commit | b25d94a6602e19a15cef169716cbc94569ef7428 (patch) | |
tree | 336e4ea5069ce022c87a62ab2d8378a25f138cc5 /community/php7-pecl-uuid | |
parent | 377d3f798a1a549a829f542b84af8cd13630edf3 (diff) | |
download | aports-b25d94a6602e19a15cef169716cbc94569ef7428.tar.bz2 aports-b25d94a6602e19a15cef169716cbc94569ef7428.tar.xz |
community/php7-pecl-uuid: moved from testing
Diffstat (limited to 'community/php7-pecl-uuid')
-rw-r--r-- | community/php7-pecl-uuid/APKBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/community/php7-pecl-uuid/APKBUILD b/community/php7-pecl-uuid/APKBUILD new file mode 100644 index 0000000000..09d8a1ecf5 --- /dev/null +++ b/community/php7-pecl-uuid/APKBUILD @@ -0,0 +1,34 @@ +# Contributor: Fabio Ribeiro <fabiorphp@gmail.com> +# Maintainer: Fabio Ribeiro <fabiorphp@gmail.com> +pkgname=php7-pecl-uuid +_pkgreal=uuid +pkgver=1.1.0 +pkgrel=1 +pkgdesc="A wrapper around libuuid from the ext2utils project." +url="https://pecl.php.net/package/uuid" +arch="all" +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() { + phpize7 + ./configure --prefix=/usr --with-php-config=php-config7 + make +} + +check() { + make NO_INTERACTION=1 REPORT_EXIT_STATUS=1 test +} + +package() { + make INSTALL_ROOT="$pkgdir"/ install + install -d "$pkgdir"/etc/php7/conf.d + echo "extension=$_pkgreal.so" > "$pkgdir"/etc/php7/conf.d/50_$_pkgreal.ini +} + +sha512sums="aea814a12e266e4a9e36c58bae78927fa9de6d2b7bf9c75a911710b26958aeecd31d972f56519cf4882a4b13864bc0740ad968b06e704ce7642279253009e76d uuid-1.1.0.tgz" |