2 |
# |
# |
3 |
# mkdist -- a script to create software distributions |
# mkdist -- a script to create software distributions |
4 |
# |
# |
5 |
# This script is part of OSN Commons. Copyright (C) 2024 OSN, Inc. |
# This script is part of OSN Commons. Copyright (C) 2024 OSN Developers. |
6 |
# |
# |
7 |
# OSN Commons is free software: you can redistribute it and/or modify it |
# OSN Commons is free software: you can redistribute it and/or modify it |
8 |
# under the terms of the GNU General Public License as published by |
# under the terms of the GNU General Public License as published by |
52 |
show_help() { |
show_help() { |
53 |
cat <<EOF |
cat <<EOF |
54 |
Usage: |
Usage: |
55 |
$me [options] [directory] |
$me [options] <directory> |
56 |
|
|
57 |
Create a software distribution from a directory. |
Create a software distribution from a directory. |
58 |
|
|
302 |
echo "$me: preparing '$target' for packaging" |
echo "$me: preparing '$target' for packaging" |
303 |
|
|
304 |
tmpdir=$(mktemp -d) |
tmpdir=$(mktemp -d) |
305 |
rsync_tmpdir="$tmpdir/$output_basename" |
rsync_tmpdir="$tmpdir/${output_basename}-${archive_version}" |
306 |
|
|
307 |
mkdir $rsync_tmpdir |
mkdir $rsync_tmpdir |
308 |
|
|