version 1.1, 2025/03/13 23:42:41
|
version 1.2, 2025/03/14 00:13:41
|
Line 26
|
Line 26
|
# along with FreeM. If not, see <https://www.gnu.org/licenses/>. |
# along with FreeM. If not, see <https://www.gnu.org/licenses/>. |
# |
# |
# $Log$ |
# $Log$ |
# Revision 1.1 2025/03/13 23:42:41 snw |
# Revision 1.2 2025/03/14 00:13:41 snw |
# Initial revision |
# Add copyright file |
|
# |
|
# Revision 1.1.1.1 2025/03/13 23:42:41 snw |
|
# Initial commit |
# |
# |
# |
# |
# SPDX-FileCopyrightText: (C) 2025 Coherent Logic Development LLC |
# SPDX-FileCopyrightText: (C) 2025 Coherent Logic Development LLC |
Line 51 FREEM_VERSION=$1
|
Line 54 FREEM_VERSION=$1
|
SRCDIR=$(pwd) |
SRCDIR=$(pwd) |
TMPDIR=$(mktemp -d) |
TMPDIR=$(mktemp -d) |
INFILE="freem-${FREEM_VERSION}.tar.gz" |
INFILE="freem-${FREEM_VERSION}.tar.gz" |
OUTFILE="${TMPDIR}/freem_${FREEM_VERSION}.tar.gz" |
OUTFILE="${TMPDIR}/freem_${FREEM_VERSION}.orig.tar.gz" |
TARDIR="${TMPDIR}/freem-${FREEM_VERSION}" |
TARDIR="${TMPDIR}/freem-${FREEM_VERSION}" |
|
|
URL="https://freem.coherent-logic.com/downloads/freem-${FREEM_VERSION}.tar.gz" |
URL="https://freem.coherent-logic.com/downloads/freem-${FREEM_VERSION}.tar.gz" |
Line 89 fi
|
Line 92 fi
|
|
|
echo "${PGM}: building the package..." |
echo "${PGM}: building the package..." |
cd "${TARDIR}" |
cd "${TARDIR}" |
|
export DEB_BUILD_MAINT_OPTIONS=hardening=-fortify,-format,-stackprotector,-stackprotectorstrong |
debuild -us -uc |
debuild -us -uc |