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


      1 #!/usr/bin/env sh
      2 
      3 ./configure $KISS_CONFIGURE \
      4 	--prefix=/usr \
      5 	--sysconfdir=/etc \
      6 	--docdir="/usr/share/doc/pm-utils-$2"
      7 make
      8 make install
      9 
     10 install -m644 man/*.1 "$1/usr/share/man/man1" &&
     11 	install -m644 man/*.8 "$1/usr/share/man/man8" &&
     12 	ln -s pm-action.8 "$1/usr/share/man/man8/pm-suspend.8" &&
     13 	ln -s pm-action.8 "$1/usr/share/man/man8/pm-hibernate.8" &&
     14 	ln -s pm-action.8 "$1/usr/share/man/man8/pm-suspend-hybrid.8"