43 lines
1015 B
Bash
Executable File
43 lines
1015 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)
|
|
TAG=$(echo $TARGET | cut -d'_' -f4)
|
|
|
|
#
|
|
# Clean up directories
|
|
rm -rf staging
|
|
|
|
#
|
|
# package
|
|
|
|
mkdir -p staging/usr/local/bigbluebutton/bbb-transcription-controller
|
|
|
|
find -maxdepth 1 ! -path . ! -name staging ! -name .git $(printf "! -name %s " $(cat .build-files)) -exec cp -r {} staging/usr/local/bigbluebutton/bbb-transcription-controller/ \;
|
|
|
|
pushd .
|
|
cd staging/usr/local/bigbluebutton/bbb-transcription-controller/
|
|
npm install --production
|
|
popd
|
|
|
|
mkdir -p staging/usr/lib/systemd/system
|
|
cp bbb-transcription-controller.service staging/usr/lib/systemd/system
|
|
|
|
##
|
|
|
|
. ./opts-$DISTRO.sh
|
|
|
|
#
|
|
# Build RPM package
|
|
fpm -s dir -C ./staging -n $PACKAGE \
|
|
--version $VERSION --epoch $EPOCH \
|
|
--after-install after-install.sh \
|
|
--before-remove before-remove.sh \
|
|
--description "BigBlueButton Transcription Controller" \
|
|
$DIRECTORIES \
|
|
$OPTS
|
|
|