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


      1 #!/usr/bin/env sh
      2 
      3 for file in patches/* ; do
      4 	patch -p1 < "$file"
      5 done
      6 
      7 ./configure \
      8 	$KISS_CONFIGURE \
      9 	--prefix=/usr \
     10 	--enable-busybox-workaround &&
     11 	make &&
     12 	make install-strip