Annotation of freem-mk-debian-package/mk-debian-package, revision 1.2
1.1 snw 1: #!/usr/bin/env bash
2:
3: #
1.2 ! snw 4: # $Id: mk-debian-package,v 1.1.1.1 2025/03/13 23:42:41 snw Exp $
1.1 snw 5: # Creates a Debian package for a specific FreeM version
6: #
7: #
8: # Author: Serena Willis <snw@coherent-logic.com>
9: # Copyright (C) 1998 MUG Deutschland
10: # Copyright (C) 2025 Coherent Logic Development LLC
11: #
12: #
13: # This file is part of FreeM.
14: #
15: # FreeM is free software: you can redistribute it and/or modify
16: # it under the terms of the GNU Affero Public License as published by
17: # the Free Software Foundation, either version 3 of the License, or
18: # (at your option) any later version.
19: #
20: # FreeM is distributed in the hope that it will be useful,
21: # but WITHOUT ANY WARRANTY; without even the implied warranty of
22: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23: # GNU Affero Public License for more details.
24: #
25: # You should have received a copy of the GNU Affero Public License
26: # along with FreeM. If not, see <https://www.gnu.org/licenses/>.
27: #
1.2 ! snw 28: # $Log: mk-debian-package,v $
! 29: # Revision 1.1.1.1 2025/03/13 23:42:41 snw
! 30: # Initial commit
! 31: #
1.1 snw 32: #
33: # SPDX-FileCopyrightText: (C) 2025 Coherent Logic Development LLC
34: # SPDX-License-Identifier: AGPL-3.0-or-later
35: #
36:
37: PGM=$(basename $0)
38:
39: function usage() {
40: echo "usage: ${PGM} <freem-version>"
41: exit 1
42: }
43:
44: if [[ $# != 1 ]]
45: then
46: usage
47: fi
48:
49: FREEM_VERSION=$1
50:
51: SRCDIR=$(pwd)
52: TMPDIR=$(mktemp -d)
53: INFILE="freem-${FREEM_VERSION}.tar.gz"
1.2 ! snw 54: OUTFILE="${TMPDIR}/freem_${FREEM_VERSION}.orig.tar.gz"
1.1 snw 55: TARDIR="${TMPDIR}/freem-${FREEM_VERSION}"
56:
57: URL="https://freem.coherent-logic.com/downloads/freem-${FREEM_VERSION}.tar.gz"
58: echo -n "${PGM}: downloading ${URL} to ${OUTFILE}..."
59: curl -s "${URL}" > "${OUTFILE}"
60: if [[ $? == 0 ]]
61: then
62: echo "[OK]"
63: else
64: echo "[FAIL]"
65: exit 1
66: fi
67:
68: echo -n "${PGM}: extracting ${OUTFILE} to ${TARDIR}..."
69: tar zxf "${OUTFILE}" -C "${TMPDIR}"
70: if [[ $? == 0 ]]
71: then
72: echo "[OK]"
73: else
74: echo "[FAIL]"
75: exit 1
76: fi
77:
78: sed -i "s/FREEM_VERSION/${FREEM_VERSION}/g" debian/changelog
79:
80: echo -n "${PGM}: copying Debian packaging control info to ${TARDIR}..."
81: cp -r debian "${TARDIR}/"
82: if [[ $? == 0 ]]
83: then
84: echo "[OK]"
85: else
86: echo "[FAIL]"
87: exit 1
88: fi
89:
90: echo "${PGM}: building the package..."
91: cd "${TARDIR}"
1.2 ! snw 92: export DEB_BUILD_MAINT_OPTIONS=hardening=-fortify,-format,-stackprotector,-stackprotectorstrong
1.1 snw 93: debuild -us -uc
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>