summaryrefslogtreecommitdiff
path: root/jh-mvn-install.sh
blob: ab6759453d3e19ae66614723b915f02245be9810 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/bash
# Copyright © 2013 Luke Shumaker <lukeshu@sbcglobal.net>
# This work is free. You can redistribute it and/or modify it under the
# terms of the Do What The Fuck You Want To Public License, Version 2,
# as published by Sam Hocevar. See the COPYING file for more details.

if [[ $# != 5 ]] && [[ $# != 6 ]]; then
	jh-help $0 >>/dev/stderr
	exit 1
fi

base=`jh-mvn-basename $1 $2 $3`
jarfile=$4
pomfile=$5
alias=$6

dir="${base%/*}"
install -d "${DESTDIR}${dir}"
install -m 644 "$jarfile" "${DESTDIR}${base}.jar"
install -m 644 "$pomfile" "${DESTDIR}${base}.pom"

if [[ -n $alias ]]; then
	link="/usr/share/java/$alias"
	install -d "${DESTDIR}${link%/*}"
	ln -s "${base}.jar" "${DESTDIR}${link}"
fi