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.

59 lines
1.6 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 - 2008 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. package_usage() {
  23. cat <<EOT
  24. Usage: sde package <action> <arguments> (Alias: pkg)
  25. new [<repository>/]<package> <download> [...]
  26. Creates a new package based on a template and the given download
  27. locations.
  28. new -fm [<repository>/]<package> [<name_at_freshmeat>]
  29. Creates a new package based on the information available at
  30. freshmeat <http://freshmeat.net> from it.
  31. new -deb [options] [repo/]<package>
  32. Creates a pkg from packages.debian.org. For more details:
  33. sde pkg new -deb --help
  34. EOT
  35. }
  36. # what action was requested?
  37. if [ $# -eq 0 ]; then
  38. action="help"
  39. else
  40. action="$1"; shift
  41. fi
  42. case "$action" in
  43. help|--help) package_usage ;;
  44. new) . $SDEROOT/lib/sde-package/new.in
  45. package_new "$@" ;;
  46. *) echo_warning "'$COLOR_MESSAGE$action$COLOR_NORMAL' not understood by the" \
  47. "$COLOR_MESSAGE$module$COLOR_NORMAL module"
  48. package_usage
  49. exit 1 ;;
  50. esac