45 lines
1007 B
Bash
45 lines
1007 B
Bash
|
#!/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
|
||
|
cp -r playback staging/user/local/bigbluebutton/core
|
||
|
|
||
|
mkdir -p staging/usr/share/bigbluebutton/nginx
|
||
|
mv staging/usr/local/bigbluebutton/core/scripts/playback-video.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 presentation" \
|
||
|
$DIRECTORIES \
|
||
|
$OPTS \
|
||
|
-d 'yq (>= 3)' -d 'yq (<< 4)'
|