kiss-stj

My KISS Linux repo for software I use on my computers.
git clone https://git.stjo.hn/kiss-stj
Log | Files | Refs | README | LICENSE

build (209B)


      1 #!/usr/bin/env sh
      2 
      3 export PCSC_CFLAGS="-I/usr/include/PCSC"
      4 export PCSC_LIBS="-L/usr/lib -lpcsclite"
      5 ./configure $KISS_CONFIGURE \
      6 	--prefix=/usr \
      7 	--enable-usbdropdir=/usr/lib/pcsc/drivers
      8 make
      9 make install