mirror of
https://github.com/phpredis/phpredis.git
synced 2026-06-19 07:35:31 +00:00
Correct debian package filename.
Unified php5/conf.d support.
This commit is contained in:
@@ -0,0 +1,21 @@
|
|||||||
|
#!/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/
|
||||||
Reference in New Issue
Block a user