mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-03-28 14:56:19 +01:00
39 lines
1.3 KiB
Bash
Executable file
39 lines
1.3 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (C) 2020-2024 Savoir-faire Linux Inc.
|
|
#
|
|
# Author: Amin Bandali <amin.bandali@savoirfairelinux.com>
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
# This script is used in the packaging containers to build a snap
|
|
# package on an ubuntu base distro.
|
|
|
|
|
|
set -e
|
|
|
|
tar xf "/src/$RELEASE_TARBALL_FILENAME" -C /opt
|
|
cd /opt/jami-*/
|
|
cp -r extras/packaging/gnu-linux/rules/snap/common .
|
|
cp -r extras/packaging/gnu-linux/rules/snap/${SNAP_PKG_NAME}/snapcraft.yaml .
|
|
|
|
# set the version and tarball filename
|
|
sed -i "s/RELEASE_VERSION/${RELEASE_VERSION}/g" snapcraft.yaml
|
|
|
|
snapcraft # requires snapcraft >= 4.8
|
|
|
|
# move the built snap to output
|
|
mv *.snap /opt/output/
|
|
chown -R "${CURRENT_UID}:${CURRENT_UID}" .
|
|
chown ${CURRENT_UID}:${CURRENT_GID} /opt/output/*.snap
|