mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
86 lines
1.7 KiB
Bash
Executable File
86 lines
1.7 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# This tool generates full update packages for the update system.
|
|
# Author: Darin Fisher
|
|
#
|
|
|
|
. $(dirname "$0")/common.sh
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
print_usage() {
|
|
notice "Usage: $(basename $0) [OPTIONS] ARCHIVE DIRECTORY"
|
|
}
|
|
|
|
if [ $# = 0 ]; then
|
|
print_usage
|
|
exit 1
|
|
fi
|
|
|
|
if [ $1 = -h ]; then
|
|
print_usage
|
|
notice ""
|
|
notice "The contents of DIRECTORY will be stored in ARCHIVE."
|
|
notice ""
|
|
notice "Options:"
|
|
notice " -h show this help text"
|
|
notice ""
|
|
exit 1
|
|
fi
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
archive="$1"
|
|
targetdir="$2"
|
|
workdir="$targetdir.work"
|
|
manifest="$workdir/update.manifest"
|
|
targetfiles="update.manifest"
|
|
|
|
mkdir -p "$workdir"
|
|
|
|
# Generate a list of all files in the target directory.
|
|
pushd "$targetdir"
|
|
if test $? -ne 0 ; then
|
|
exit 1
|
|
fi
|
|
|
|
# On Mac, force a top-level file so that OS X reloads the Info.plist
|
|
# and launches the right architecture for the OS version, bug 600098
|
|
if [[ -d Contents ]]; then
|
|
touch force_plist_reload
|
|
fi
|
|
|
|
list_files files
|
|
|
|
popd
|
|
|
|
> $manifest
|
|
|
|
num_files=${#files[*]}
|
|
|
|
for ((i=0; $i<$num_files; i=$i+1)); do
|
|
f="${files[$i]}"
|
|
|
|
notice "processing $f"
|
|
|
|
make_add_instruction "$f" >> $manifest
|
|
|
|
dir=$(dirname "$f")
|
|
mkdir -p "$workdir/$dir"
|
|
$BZIP2 -cz9 "$targetdir/$f" > "$workdir/$f"
|
|
copy_perm "$targetdir/$f" "$workdir/$f"
|
|
|
|
targetfiles="$targetfiles \"$f\""
|
|
done
|
|
|
|
# Append remove instructions for any dead files.
|
|
append_remove_instructions "$targetdir" >> $manifest
|
|
|
|
$BZIP2 -z9 "$manifest" && mv -f "$manifest.bz2" "$manifest"
|
|
|
|
eval "$MAR -C \"$workdir\" -c output.mar $targetfiles"
|
|
mv -f "$workdir/output.mar" "$archive"
|
|
|
|
# cleanup
|
|
rm -fr "$workdir"
|