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 (190B)


      1 #!/bin/sh -e
      2 
      3 ./configure \
      4     --prefix=/usr \
      5     --enable-pcre-16 \
      6     --enable-pcre-32 \
      7     --enable-pcregrep-libz \
      8     --enable-pcregrep-libbz2 \
      9     --enable-jit
     10 
     11 make
     12 make install