ad733f8317
added a buffer directory so the actual work of image frame capture and live video recording can be moved off of main storage. also removed installation of the apache2 http server from install.sh to make this app more agnostic and leave it up to the end user to install what ever web server they want.
12 lines
272 B
Bash
12 lines
272 B
Bash
#!/bin/sh
|
|
if [ ! -d "/opt/mow" ]; then
|
|
mkdir /opt/mow
|
|
fi
|
|
cp ./.build-mow/mow /opt/mow/bin
|
|
printf "#!/bin/sh\n" > /opt/mow/run
|
|
printf "/opt/mow/bin \$1 \$2 \$3\n" >> /opt/mow/run
|
|
chmod +x /opt/mow/run
|
|
chmod +x /opt/mow/bin
|
|
rm /usr/bin/mow
|
|
ln -s /opt/mow/run /usr/bin/mow
|