--- freem-mk-debian-package/mk-debian-package 2025/03/14 00:28:10 1.3
+++ freem-mk-debian-package/mk-debian-package 2025/03/14 00:58:44 1.4
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
#
-# $Id: mk-debian-package,v 1.3 2025/03/14 00:28:10 snw Exp $
+# $Id: mk-debian-package,v 1.4 2025/03/14 00:58:44 snw Exp $
# Creates a Debian package for a specific FreeM version
#
#
@@ -26,6 +26,9 @@
# along with FreeM. If not, see .
#
# $Log: mk-debian-package,v $
+# Revision 1.4 2025/03/14 00:58:44 snw
+# Remove dbgsym package from upload
+#
# Revision 1.3 2025/03/14 00:28:10 snw
# Support Debian-specific version number
#
@@ -43,17 +46,18 @@
PGM=$(basename $0)
function usage() {
- echo "usage: ${PGM} "
+ echo "usage: ${PGM} "
exit 1
}
-if [[ $# != 2 ]]
+if [[ $# != 3 ]]
then
usage
fi
FREEM_VERSION=$1
FDPKG_VERSION=$2
+FDSSH=$3
SRCDIR=$(pwd)
TMPDIR=$(mktemp -d)
@@ -98,3 +102,8 @@ echo "${PGM}: building the package..."
cd "${TARDIR}"
export DEB_BUILD_MAINT_OPTIONS=hardening=-fortify,-format,-stackprotector,-stackprotectorstrong
debuild -us -uc
+
+echo "${PGM}: the package is in ${TMPDIR}"
+
+rm -f ${TMPDIR}/*dbgsym*
+scp ${TMPDIR}/*.deb "${FDSSH}://var/www/freem.coherent-logic.com/downloads/binaries/debian/"