contrib/php-igbinary/Pkgfile

21 lines
553 B
Plaintext
Raw Normal View History

# 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 19:53:22 +02:00
release=1
2022-01-15 13:12:04 +01:00
source=(https://pecl.php.net/get/igbinary-$version.tgz)
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
}