50 lines
1.2 KiB
Bash
Executable File
50 lines
1.2 KiB
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
TARGET=`basename $(pwd)`
|
|
|
|
|
|
PACKAGE=$(echo $TARGET | cut -d'_' -f1)
|
|
VERSION=$(echo $TARGET | cut -d'_' -f2)
|
|
DISTRO=$(echo $TARGET | cut -d'_' -f3)
|
|
|
|
#
|
|
# Clear staging directory for build
|
|
rm -rf staging
|
|
|
|
#
|
|
# Create build directories for markign by fpm
|
|
DIRS=""
|
|
for dir in $DIRS; do
|
|
mkdir -p staging$dir
|
|
DIRECTORIES="$DIRECTORIES --directories $dir"
|
|
done
|
|
|
|
##
|
|
|
|
mkdir -p staging/usr/local/bigbluebutton/core
|
|
cp -r scripts staging/usr/local/bigbluebutton/core
|
|
|
|
chmod +x staging/usr/local/bigbluebutton/core/scripts/process/screenshare.rb
|
|
chmod +x staging/usr/local/bigbluebutton/core/scripts/publish/screenshare.rb
|
|
|
|
mkdir -p staging/usr/local/bigbluebutton/core/playback/screenshare
|
|
cp -r playback/* staging/usr/local/bigbluebutton/core/playback/screenshare
|
|
|
|
mkdir -p staging/usr/share/bigbluebutton/nginx
|
|
mv staging/usr/local/bigbluebutton/core/scripts/recording-screenshare.nginx staging/usr/share/bigbluebutton/nginx
|
|
|
|
##
|
|
|
|
. ./opts-$DISTRO.sh
|
|
|
|
#
|
|
# Build package
|
|
fpm -s dir -C ./staging -n $PACKAGE \
|
|
--version $VERSION --epoch $EPOCH \
|
|
--post-install before-install.sh \
|
|
--after-install after-install.sh \
|
|
--description "BigBluebutton playback of screenshare" \
|
|
$DIRECTORIES \
|
|
$OPTS
|
|
|