25 lines
652 B
Bash
25 lines
652 B
Bash
# Template file for 'php-igbinary'
|
|
pkgname=php-igbinary
|
|
version=3.1.2
|
|
revision=1
|
|
wrksrc="igbinary-${version}"
|
|
build_style=gnu-configure
|
|
hostmakedepends="autoconf"
|
|
makedepends="php-devel"
|
|
depends="php>7.4.3"
|
|
short_desc="Igbinary is a drop in replacement for the standard php serializer"
|
|
maintainer="Merlin Diavova <merlindiavova@gmail.com>"
|
|
license="BSD-3-Clause"
|
|
homepage="https://github.com/igbinary/igbinary/"
|
|
distfiles="https://pecl.php.net/get/igbinary-${version}.tgz"
|
|
checksum=e78b327dad5397ed42f7b0c6fe017eddcde8c3c24ab8b59562cb691c411fa90b
|
|
|
|
pre_configure() {
|
|
phpize
|
|
}
|
|
|
|
do_install() {
|
|
make INSTALL_ROOT="${DESTDIR}" install
|
|
vlicense COPYING
|
|
}
|