1#!/bin/bash
2#
3# MindForger thinking notebook
4#
5# Copyright (C) 2016-2020 Martin Dvorak <martin.dvorak@mindforger.com>
6#
7# This program is free software; you can redistribute it and/or
8# modify it under the terms of the GNU General Public License
9# as published by the Free Software Foundation; either version 2
10# of the License, or (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19
20# IMPROVE: make release version parameter to all build scripts and set it here
21
22export SCRIPT_HOME=`pwd`
23
24# Ubuntu
25cp -vf ubuntu/ubuntu-launchpad-releases.sh /home/dvorka/p/mindforger/launchpad
26cd /home/dvorka/p/mindforger/launchpad && ./ubuntu-launchpad-releases.sh
27
28# tarball
29cd ${SCRIPT_HOME}
30cp -vf tarball/tarball-build.sh /home/dvorka/p/mindforger/release
31cd /home/dvorka/p/mindforger/release && ./tarball-build.sh
32
33# .deb
34cd ${SCRIPT_HOME}
35cp -vf debian/debian-make-deb.sh /home/dvorka/p/mindforger/debian
36cd /home/dvorka/p/mindforger/debian && ./debian-make-deb.sh
37
38# .rpm (SSH to running Fedora - copy there and back)
39
40# eof
41