mirror of
https://github.com/php-win-ext/phpredis.git
synced 2026-03-24 00:52:16 +01:00
Correct debian package filename.
Unified php5/conf.d support.
This commit is contained in:
21
mkdeb.sh
Executable file
21
mkdeb.sh
Executable file
@@ -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