File: openswitcher-develop.sh

package info (click to toggle)
pyatem 0.13.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,776 kB
  • sloc: python: 15,193; xml: 435; ansic: 256; sh: 26; makefile: 20
file content (18 lines) | stat: -rwxr-xr-x 726 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

# This tool sets up openswitcher and pyatem to run from the source files in the git repository. This requires root
# permissions to install the software using symlinks to the source.

printf "Installing the pyatem module using setup.py develop\n"
sudo python3 setup.py develop

printf "Installing the openswitcher application to /usr/local/\n"
meson _build
meson compile -C _build
sudo meson install -C _build

printf "*------------------------------------*\n"
printf "Development installation done\n"
printf "The python module is now available system-wide as 'pyatem'\n"
printf "The GTK application is now available as 'switcher-control'\n"
printf "The proxy application is now available as 'openswitcher-proxy'\n"