pcsc/build.sh
Johannes Findeisen 8db0824d92 Initial commit of the PC/SC (pcsc) extension. There is some stuff that needs to be romoved like the build.sh script and the subfolders tmp/ and php/.
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
2011-12-13 16:57:24 +00:00

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"