mirror of
https://github.com/php-win-ext/phpredis.git
synced 2026-04-23 08:38:09 +02:00
42e2c340a5
Unified php5/conf.d support.
22 lines
471 B
Bash
Executable File
22 lines
471 B
Bash
Executable File
#!/bin/sh
|
|
phpize
|
|
./configure CFLAGS="-O3"
|
|
make clean all
|
|
DIR=`php-config --extension-dir | cut -c 2-`
|
|
|
|
rm -rf debian
|
|
|
|
mkdir -p debian
|
|
mkdir -p debian/DEBIAN
|
|
mkdir -p debian/$DIR
|
|
|
|
cp debian.control debian/DEBIAN/control
|
|
|
|
UBUNTU=`uname -v | grep -ci ubuntu`
|
|
mkdir -p debian/etc/php5/conf.d/
|
|
echo "extension=redis.so" >> debian/etc/php5/conf.d/redis.ini
|
|
|
|
cp modules/redis.so debian/$DIR
|
|
dpkg -b debian phpredis-`git describe --abbrev=0 --tags`_`uname -m`.deb
|
|
rm -rf debian/
|