bigbluebutton-Github/build/packages-template/bbb-record-core/build.sh

64 lines
1.7 KiB
Bash
Raw Normal View History

2021-08-13 18:53:18 +08:00
#!/bin/bash -ex
TARGET=`basename $(pwd)`
PACKAGE=$(echo $TARGET | cut -d'_' -f1)
VERSION=$(echo $TARGET | cut -d'_' -f2)
DISTRO=$(echo $TARGET | cut -d'_' -f3)
#
# Clean up directories
rm -rf staging
#
# Create directory for fpm to process
DIRS="/usr/local/bigbluebutton/core \
/etc/logrotate.d \
/var/bigbluebutton/recording/status/ended \
/var/bigbluebutton/captions/inbox \
/var/bigbluebutton/recording/status"
for dir in $DIRS; do
mkdir -p staging$dir
done
##
mkdir -p staging/var/log/bigbluebutton
cp -r scripts lib Gemfile Gemfile.lock staging/usr/local/bigbluebutton/core
pushd staging/usr/local/bigbluebutton/core
bundle config set --local deployment true
bundle install
# Remove unneeded files to reduce package size
bundle clean
rm -r vendor/bundle/ruby/*/cache
find vendor/bundle -name '*.o' -delete
popd
2021-08-13 18:53:18 +08:00
cp Rakefile staging/usr/local/bigbluebutton/core
2021-08-13 18:53:18 +08:00
cp bbb-record-core.logrotate staging/etc/logrotate.d
SYSTEMDSYSTEMUNITDIR=$(pkg-config --variable systemdsystemunitdir systemd)
mkdir -p "staging${SYSTEMDSYSTEMUNITDIR}"
cp systemd/* "staging${SYSTEMDSYSTEMUNITDIR}"
2021-08-13 18:53:18 +08:00
if [ -f "staging/usr/local/bigbluebutton/core/scripts/basic_stats.nginx" ]; then \
mkdir -p staging/usr/share/bigbluebutton/nginx; \
mv staging/usr/local/bigbluebutton/core/scripts/basic_stats.nginx staging/usr/share/bigbluebutton/nginx; \
2021-08-13 18:53:18 +08:00
fi
##
. ./opts-$DISTRO.sh
fpm -s dir -C ./staging -n $PACKAGE \
--version $VERSION --epoch $EPOCH \
--before-install before-install.sh \
--after-install after-install.sh \
--before-remove before-remove.sh \
--description "BigBlueButton record and playback" \
$DIRECTORIES \
$OPTS \
-d 'yq (>= 3)' -d 'yq (<< 4)'