File: install_lv2.sh

package info (click to toggle)
lv2vocoder 1-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 236 kB
  • sloc: ansic: 221; sh: 26; makefile: 6
file content (36 lines) | stat: -rwxr-xr-x 737 bytes parent folder | download | duplicates (4)
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
#!/bin/sh
#
# Install lv2 plugin bundle
#

if test -z "${LV2_INSTALL_PATH}" -a "${LV2_PATH}"
then
  echo "Trying to deduce install location from LV2_PATH contents..."
  OLDIFS=${IFS}
  IFS=:
  for DEST in ${LV2_PATH}
  do
    if test -d "${DEST}" -a -w "${DEST}"
    then
      echo "${DEST} looks good."
      LV2_INSTALL_PATH=${DEST}
      break
    else
      echo "${DEST} is not writable directory..."
    fi
  done
  #echo "${LV2_PATH} is directory. Installing there..."
  #LV2_INSTALL_PATH=${LV2_PATH}
  IFS=${OLDIFS}
fi

if test -z "${LV2_INSTALL_PATH}"
then
  echo "Please specify where to install by supplying LV2_INSTALL_PATH"
  exit 1
fi

echo "Installing ${1} to ${LV2_INSTALL_PATH}"
cp -R ${1} ${LV2_INSTALL_PATH}

exit $?