OpenSDE Framework (without history before r20070)
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.

47 lines
1.2 KiB

  1. #!/bin/sh
  2. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. #
  5. # Filename: bin/sde-package
  6. # Copyright (C) 2006 - 2007 The OpenSDE Project
  7. #
  8. # More information can be found in the files COPYING and README.
  9. #
  10. # This program is free software; you can redistribute it and/or modify
  11. # it under the terms of the GNU General Public License as published by
  12. # the Free Software Foundation; version 2 of the License. A copy of the
  13. # GNU General Public License can be found in the file COPYING.
  14. # --- SDE-COPYRIGHT-NOTE-END ---
  15. #Alias: pkg
  16. #Description: Package related tasks
  17. set -e
  18. [ -n "$SDEROOT" ] ||
  19. export SDEROOT=$( cd "${0%/*}/.."; pwd -P )
  20. . $SDEROOT/lib/libsde.in
  21. . $SDEROOT/lib/sde-package.in
  22. # what action was requested?
  23. if [ $# -eq 0 ]; then
  24. action="help"
  25. else
  26. action="$1"; shift
  27. fi
  28. case "$action" in
  29. help|--help) . $SDEROOT/lib/sde-help.in
  30. help_command package ;;
  31. up|update) . $SDEROOT/lib/sde-package/update.in
  32. package_update "$@" ;;
  33. new) . $SDEROOT/lib/sde-package/new.in
  34. package_new "$@" ;;
  35. *) . $SDEROOT/lib/sde-help.in
  36. echo_warning "'$COLOR_MESSAGE$action$COLOR_NORMAL' not understood by the" \
  37. "$COLOR_MESSAGE$module$COLOR_NORMAL module"
  38. help_command package
  39. exit 1 ;;
  40. esac