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.

39 lines
1.2 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../springframework/springframework.conf
  5. # Copyright (C) 2007 The OpenSDE Project
  6. #
  7. # More information can be found in the files COPYING and README.
  8. #
  9. # This program is free software; you can redistribute it and/or modify
  10. # it under the terms of the GNU General Public License as published by
  11. # the Free Software Foundation; version 2 of the License. A copy of the
  12. # GNU General Public License can be found in the file COPYING.
  13. # --- SDE-COPYRIGHT-NOTE-END ---
  14. # Common java configuration is needed.
  15. . $base/package/*/*/java-common-conf.in
  16. # Prevent executing normal make and install build steps.
  17. # this binary package does not follow the normal build
  18. # commands: configure; make; make install.
  19. makeopt=''
  20. makeinstopt=''
  21. # Custom installation.
  22. spring_postmake() {
  23. # Copy all java .jar files to the current prefix location.
  24. ( cd $builddir/spring-framework-${ver}/dist;
  25. find . -name "*.jar" -exec cp '{}' $root/$prefix \;
  26. )
  27. # Copy documentation as well.
  28. ( cd $builddir/spring-framework-${ver}/docs;
  29. tar -c * | tar -x -C $root/$docdir
  30. )
  31. }
  32. hook_add postmake 5 spring_postmake