summaryrefslogtreecommitdiff
path: root/tools/videotimeline/install_video_tools.sh
blob: 28d31f748c70ba1b41ff16dec8d9e1d780f62648 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#!/bin/sh
TARGETDIR="$1"

if test -z "$(which curl)"; then
	echo "This script requires 'curl' - please install it" >&2
	exit 1
fi

checkdir () {
  DUT="$1"
	CHECKPATH="${2:-yes}"
	ECHO="${3:-echo}"

	if test -z "$DUT"; then
		echo "-1"
		return
	fi

	if test ! -d "$DUT"; then
		$ECHO "ERROR: '$DUT' is not a directory'"; >&2
		echo "-1"
		return
	fi

	if test ! -w "$DUT"; then
		$ECHO "ERROR: no write permissions for '$DUT'" >&2
		echo "-1"
		return
	fi

	echo $PATH | grep -q "$DUT"
	if test $? != 0; then
		if test "$CHECKPATH" != "yes"; then
			$ECHO "WARNING: '$DUT' is not in \$PATH" >&2
		else
			$ECHO "ERROR: '$DUT' is not in \$PATH" >&2
			echo "-1"
			return
		fi
	fi

	echo 0
}

while test $(checkdir "$TARGETDIR" no) != 0 ; do

	ARDOUR=$(ls -td /opt/Ardour* 2>/dev/null | head -n 1)
	if test -n "${ARDOUR}" -a $(checkdir "${ARDOUR}/bin" no true) = 0; then
		echo -n "found ardour installation in '${ARDOUR}/bin'. Install there? [Y|n] "
		read a;
		if test "$a" != "n" -a "$a" != "N"; then
			TARGETDIR="${ARDOUR}/bin"
			continue
		fi
	fi

	if test $(checkdir "/usr/bin" yes true) = 0; then
		echo -n "Can write to '/usr/bin' Install there? [Y|n] "
		read a;
		if test "$a" != "n" -a "$a" != "N"; then
			TARGETDIR="/usr/bin"
			continue
		fi
	fi

	if test $(checkdir "${HOME}/bin" yes true) = 0; then
		echo -n "Found '${HOME}/bin' in PATH. Install there? [Y|n] "
		read a;
		if test "$a" != "n" -a "$a" != "N"; then
			TARGETDIR="${HOME}/bin"
			continue
		fi
	fi

	if test $(checkdir "/usr/local/bin" yes true) = 0; then
		echo -n "Can write to '/usr/local/bin' Install there? [Y|n] "
		read a;
		if test "$a" != "n" -a "$a" != "N"; then
			TARGETDIR="/usr/local/bin"
			continue
		fi
	fi

	echo
	echo "ERROR: Cannot find a suitable installation directory" >&2
	echo "run:  $0 /install/path/bin" >&2
	echo "'/install/path/bin' must be an existing directory and should be in \$PATH" >&2
	exit 1
done

###############################################################################
### actual install procedure
echo "installing video-tools to '${TARGETDIR}'.."
exit
cd "$TARGETDIR" || exit 1

HARVID_VERSION=$(curl http://ardour.org/files/video-tools/harvid_version.txt)
curl -L http://ardour.org/files/video-tools/harvid-${MULTIARCH}-${HARVID_VERSION}.tgz \
	| tar -x -z --exclude=README --exclude=harvid.1 --strip-components=1 || exit 1
XJADEO_VERSION=$(curl http://ardour.org/files/video-tools/xjadeo_version.txt)
curl -L http://ardour.org/files/video-tools/xjadeo-${MULTIARCH}-${XJADEO_VERSION}.tgz \
	| tar -x -z --exclude=README --exclude=xjadeo.1 --strip-components=1 || exit 1
mv xjadeo xjremote

echo "ardour video tools installed successfully"