aports/testing/php81-pecl-uuid/APKBUILD
2024-10-08 21:23:20 +02:00

35 lines
1,015 B
Text

# Contributor: Fabio Ribeiro <fabiorphp@gmail.com>
# Maintainer: Andy Postnikov <apostnikov@gmail.com>
pkgname=php81-pecl-uuid
_extname=uuid
pkgver=1.2.1
pkgrel=0
pkgdesc="PHP 8.1 wrapper around libuuid from the ext2utils project - PECL"
url="https://pecl.php.net/package/uuid"
arch="all"
license="LGPL-2.1-or-later"
depends="php81-common"
makedepends="php81-dev util-linux-dev"
source="php-pecl-$_extname-$pkgver.tgz::https://pecl.php.net/get/$_extname-$pkgver.tgz"
builddir="$srcdir/$_extname-$pkgver"
build() {
phpize81
./configure --prefix=/usr --with-php-config=php-config81
make
}
check() {
make NO_INTERACTION=1 REPORT_EXIT_STATUS=1 test TESTS=--show-diff
}
package() {
make INSTALL_ROOT="$pkgdir" install
local _confdir="$pkgdir"/etc/php81/conf.d
install -d $_confdir
echo "extension=$_extname" > $_confdir/50_$_extname.ini
}
sha512sums="
32afa4e71e6b3a524b0ab4dcf021b5c6272b4061e4bea352355468f0f001ccba7c1ad72b397c35d012ceabc1a3ade68babe37e3c38ef7d83f6d5c3eee3b528d8 php-pecl-uuid-1.2.1.tgz
"