2020-06-14 21:55:23 +00:00
|
|
|
# Description: Igbinary is a drop in replacement for the standard php serializer
|
|
|
|
# URL: https://github.com/igbinary/igbinary
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
# Depends on: php
|
|
|
|
|
|
|
|
name=php-igbinary
|
2023-02-27 18:43:53 +01:00
|
|
|
version=3.2.14
|
2021-06-10 17:53:22 +00:00
|
|
|
release=1
|
2022-01-15 13:12:04 +01:00
|
|
|
source=(https://pecl.php.net/get/igbinary-$version.tgz)
|
2020-06-14 21:55:23 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd igbinary-$version
|
|
|
|
sed 's/extension/;extension/g' -i igbinary.php.ini
|
|
|
|
phpize
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--enable-igbinary
|
|
|
|
make
|
|
|
|
make INSTALL_ROOT=$PKG install
|
|
|
|
install -vDm 644 igbinary.php.ini $PKG/etc/php/conf.d/igbinary.ini
|
|
|
|
}
|