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.

15 lines
285B

  1. #!/bin/sh
  2. # distribution tarball
  3. cd "$(dirname "$(readlink -f "$0")")"
  4. FILES='LICENSE README shake install.sh bake.c config.h bake.1'
  5. VERSION="$(cat VERSION)"
  6. TARGET="bake-$VERSION"
  7. mkdir -p $TARGET
  8. cp -f $FILES $TARGET
  9. tar cf $TARGET.tar $TARGET
  10. gzip -f $TARGET.tar
  11. rm -rf $TARGET