mirror of
https://github.com/pcsc-for-php/pcsc.git
synced 2026-08-08 21:09:26 +02:00
I think the .m4 file has some bugs because it fails to build without my weird build.sh script. I will fix that ASAP. git-svn-id: https://svn.php.net/repository/pecl/pcsc/trunk@320951 c90b9560-bf6c-de11-be94-00142212c4b1
24 lines
279 B
Bash
Executable file
24 lines
279 B
Bash
Executable file
#!/bin/bash
|
|
|
|
#echo "Cleaning up ...\n"
|
|
|
|
make clean
|
|
phpize --clean
|
|
|
|
#echo "Compile package...\n"
|
|
|
|
phpize
|
|
aclocal
|
|
libtoolize --force
|
|
autoheader
|
|
autoconf
|
|
|
|
#echo "Configure package...\n"
|
|
|
|
./configure --enable-pcsc --prefix=/usr
|
|
|
|
make
|
|
|
|
#echo "Now type su and the make install...\n"
|
|
|
|
|