mirror of
https://github.com/pcsc-for-php/pcsc.git
synced 2026-08-13 15:11:25 +02:00
24 lines
279 B
Bash
24 lines
279 B
Bash
|
|
#!/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"
|
||
|
|
|
||
|
|
|