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.

43 lines
1.5 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../maven/maven.conf
  5. # Copyright (C) 2007 - 2008 The OpenSDE Project
  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. # --- SDE-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. # Prepare necessary environment variables.
  32. cat <<-EOF > $root/etc/profile.d/maven
  33. PATH=\$PATH:$root/$prefix/bin
  34. export PATH
  35. EOF
  36. }
  37. hook_add postmake 5 maven_postmake