OpenSDE Packages Database (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.

50 lines
1.7 KiB

  1. #!/bin/sh
  2. # --- T2-COPYRIGHT-NOTE-BEGIN ---
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. #
  5. # T2 SDE: package/.../maven/maven.conf
  6. # Copyright (C) 2004 - 2006 The T2 SDE 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. # --- T2-COPYRIGHT-NOTE-END ---
  15. # Prevent executing normal make and install build steps.
  16. # This package has custom make and install.
  17. makeopt=''
  18. makeinstopt=''
  19. # Make prefix same a java_home. This way artifacts like the bin, lib
  20. # and doc directory are created at the proper level.
  21. prefix=opt/maven2
  22. set_confopt
  23. # To be able to run maven a JRE needs to be installed. To be able to
  24. # have maven compile java stuff a JDK needs to be available as well.
  25. # Todo: check for jdk, after java alternatives are working properly.
  26. # Custom installation.
  27. maven_postmake() {
  28. # Copy the extracted archive to the current prefix location.
  29. # But make sure to preserve any possible links.
  30. ( cd $builddir/maven-${ver}; tar -c * | tar -x -C $root/$prefix )
  31. # Unfortunately the acces right need to be changed. The archive
  32. # was probably created under Windows.
  33. chmod +ux $root/$prefix/bin/m2
  34. chmod +ur $root/$prefix/bin/m2.conf
  35. chmod +ux $root/$prefix/lib/*
  36. chmod -R +ux $root/$prefix/core
  37. # Prepare necessary environment variables.
  38. cat <<-EOF > $root/etc/profile.d/maven
  39. PATH=\$PATH:$root/$prefix/bin
  40. export PATH
  41. EOF
  42. }
  43. hook_add postmake 5 maven_postmake