55 lines
1.4 KiB
Bash
Executable File
55 lines
1.4 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)
|
|
TAG=$(echo $TARGET | cut -d'_' -f4)
|
|
BUILD=$1
|
|
|
|
#
|
|
# Clean up directories
|
|
rm -rf staging
|
|
|
|
#
|
|
# package
|
|
|
|
# Create directories for fpm to process
|
|
DIRS="/usr/local/bin /etc/default /usr/share/bbb-graphql-server /lib/systemd/system"
|
|
for dir in $DIRS; do
|
|
mkdir -p staging$dir
|
|
done
|
|
|
|
git clone --branch v2.32.1 https://github.com/iMDT/hasura-graphql-engine.git
|
|
cat hasura-graphql-engine/hasura-graphql.part-a* > hasura-graphql
|
|
rm -rf hasura-graphql-engine/
|
|
chmod +x hasura-graphql
|
|
cp -r hasura-graphql staging/usr/local/bin/hasura-graphql-engine
|
|
|
|
cp -r hasura-config.env staging/etc/default/bbb-graphql-server
|
|
cp -r bbb_schema.sql metadata config.yaml staging/usr/share/bbb-graphql-server
|
|
|
|
cp ./bbb-graphql-server.service staging/lib/systemd/system/bbb-graphql-server.service
|
|
|
|
mkdir -p hasura-cli
|
|
cd hasura-cli
|
|
npm install --save-dev hasura-cli
|
|
cp node_modules/hasura-cli/hasura ../staging/usr/local/bin/hasura
|
|
cd ..
|
|
rm -rf hasura-cli
|
|
|
|
. ./opts-$DISTRO.sh
|
|
|
|
#
|
|
# Build package
|
|
fpm -s dir -C ./staging -n $PACKAGE \
|
|
--version $VERSION --epoch $EPOCH \
|
|
--after-install after-install.sh \
|
|
--after-remove after-remove.sh \
|
|
--before-remove before-remove.sh \
|
|
--description "GraphQL server component for BigBlueButton" \
|
|
$DIRECTORIES \
|
|
$OPTS
|