Ever burned a cake?
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
361B

  1. #!/bin/sh
  2. # source install
  3. TARGET=${TARGET:-/usr/local}
  4. INSTALL=${INSTALL:-bake shake}
  5. cd $(dirname "$(readlink -f "$0")")
  6. chmod +x shake
  7. ./shake bake.c -s $@ && \
  8. mkdir $TARGET/bin $TARGET/man/man1 -p && \
  9. install -m 755 $INSTALL $TARGET/bin
  10. gzip -c bake.1 > $TARGET/man/man1/bake.1.gz && \
  11. ln -f -s $TARGET/man/man1/bake.1.gz $TARGET/man/man1/shake.1.gz