44 lines
970 B
Bash
Executable File
44 lines
970 B
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
|
|
cp -r playback staging/usr/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
|