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


      1 #!/usr/bin/env sh
      2 
      3 ./configure $KISS_CONFIGURE \
      4 	--prefix=/usr \
      5 	--exec-prefix=/usr \
      6 	--sbindir=/usr/bin \
      7 	--bindir=/usr/bin
      8 make
      9 make install
     10 
     11 # Fix the sbin location.
     12 find "$1/usr/sbin" -type f | xargs -I % mv % "$1/usr/bin"
     13 rm -rf "$1/usr/sbin"