Dash:
[t2.git] / package / java / maven1 / maven1.conf
blob1af61a23f7895493f769cc8014520d6dc71232ac
1 # --- T2-COPYRIGHT-NOTE-BEGIN ---
2 # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
3
4 # T2 SDE: package/.../maven1/maven1.conf
5 # Copyright (C) 2004 - 2005 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/maven-${ver}
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         # Prepare necessary environment variables.
36         cat <<-EOF > $root/etc/profile.d/maven1
37         MAVEN_HOME=$root/$prefix
38         export MAVEN_HOME
40         PATH=\$PATH:\$MAVEN_HOME/bin
41         export PATH
42         EOF
45 hook_add postmake 5 maven_postmake