blob: 91935f15c0ad15126585fd7df27618aeb91d251e [file] [log] [blame]
#!/bin/bash
# Builds and uploads a debian package for task_scheduler.
APPNAME=task-scheduler
SYSTEMD=${APPNAME}.service
DESCRIPTION="Task scheduler for Skia."
set -x -e
# Copy files into the right locations in ${ROOT}.
copy_release_files()
{
INSTALL="fakeroot install -D --verbose --backup=none --group=root --owner=root"
INSTALL_DIR="fakeroot install -d --verbose --backup=none --group=root --owner=root"
${INSTALL} --mode=644 -T ./sys/${APPNAME}.service ${ROOT}/etc/systemd/system/${APPNAME}.service
${INSTALL} --mode=755 -T ${GOPATH}/bin/task_scheduler ${ROOT}/usr/local/bin/task_scheduler
${INSTALL} --mode=644 -T ./res/js/core.js ${ROOT}/usr/local/share/${APPNAME}/res/js/core.js
${INSTALL} --mode=644 -T ./res/vul/elements.html ${ROOT}/usr/local/share/${APPNAME}/res/vul/elements.html
${INSTALL} --mode=644 -T ./res/img/fav.ico ${ROOT}/usr/local/share/${APPNAME}/res/img/fav.ico
${INSTALL_DIR} --mode=755 ${ROOT}/usr/local/share/${APPNAME}/templates
${INSTALL} --mode=644 ./templates/* ${ROOT}/usr/local/share/${APPNAME}/templates
${INSTALL_DIR} --mode=777 ${ROOT}/mnt/pd0/task_scheduler_workdir
${INSTALL} --mode=644 -T ../infra/config/recipes.cfg ${ROOT}/mnt/pd0/task_scheduler_workdir/recipes.cfg
}
source ../bash/release.sh