* updated korganizer (21.12.1 -> 21.12.2), untested
[t2-trunk.git] / package / java / maven / maven.conf
blob5d17ba7836719a26549cfc9ff08868c54012d354
1 # --- T2-COPYRIGHT-NOTE-BEGIN ---
2 # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
3
4 # T2 SDE: package/.../maven/maven.conf
5 # Copyright (C) 2004 - 2007 The T2 SDE 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 # --- 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=
20 # Make prefix same a java_home. This way artifacts like the bin, lib
21 # and doc directory are created at the proper level.
22 prefix=opt/maven2
23 set_confopt
25 # To be able to run maven a JRE needs to be installed. To be able to
26 # have maven compile java stuff a JDK needs to be available as well.
27 # Todo: check for jdk, after java alternatives are working properly.
29 # Custom installation.
30 maven_postmake() {
31         # Copy the extracted archive to the current prefix location.
32         # But make sure to preserve any possible links.
33         ( cd $builddir/maven-${ver}; tar -c * | tar -x -C $root/$prefix )
35         # Unfortunately the acces right need to be changed. The archive
36         # was probably created under Windows.
37         chmod +ux $root/$prefix/bin/mvn
38         chmod -R +ur $root/$prefix
40         # Prepare necessary environment variables.
41         cat <<-EOF > $root/etc/profile.d/maven
42         PATH=\$PATH:$root/$prefix/bin
43         export PATH
44         EOF
47 hook_add postmake 5 maven_postmake