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


      1 #!/usr/bin/env sh
      2 
      3 for file in patches/* ; do
      4 	patch -p1 < "$file"
      5 done
      6 
      7 meson build \
      8 	--prefix=/usr \
      9 	-Dspice=enabled \
     10 	-Dvnc=disabled
     11 
     12 ninja -C build
     13 ninja -C build install