1#! /bin/sh
2# Copyright 2018 The OpenSSL Project Authors. All Rights Reserved.
3#
4# Licensed under the OpenSSL license (the "License").  You may not use
5# this file except in compliance with the License.  You can obtain a copy
6# in the file LICENSE in the source distribution or at
7# https://www.openssl.org/source/license.html
8
9HERE=`dirname $0`
10
11version=`grep 'OPENSSL_VERSION_TEXT  *"OpenSSL' $HERE/../include/openssl/opensslv.h | sed -e 's|.*"OpenSSL ||' -e 's| .*||'`
12basename=openssl
13
14NAME="$basename-$version"
15
16while [ $# -gt 0 ]; do
17    case "$1" in
18        --name=* ) NAME=`echo "$1" | sed -e 's|[^=]*=||'`       ;;
19        --name ) shift; NAME="$1"                               ;;
20        --tarfile=* ) TARFILE=`echo "$1" | sed -e 's|[^=]*=||'` ;;
21        --tarfile ) shift; TARFILE="$1"                         ;;
22        * ) echo >&2 "Could not parse '$1'"; exit 1             ;;
23    esac
24    shift
25done
26
27if [ -z "$TARFILE" ]; then TARFILE="$NAME.tar"; fi
28
29# This counts on .gitattributes to specify what files should be ignored
30git archive --worktree-attributes --format=tar --prefix="$NAME/" -v HEAD \
31    | gzip -9 > "$TARFILE.gz"
32
33# Good old way to ensure we display an absolute path
34td=`dirname $TARFILE`
35tf=`basename $TARFILE`
36ls -l "`cd $td; pwd`/$tf.gz"
37