fc620819b6
* Added needed boilerplate to configure.ac * Wrap original Makefile's with automake: - Renamed all original Makefile -> Makefile.legacy - Force automake generated Makefile to call Makefile.legacy: Currently handle: all, install, clean, distclean, dist, docs, config - Note: our temporary 'dist' target conflicts with automake 'dist' target. * Temporarily added extra dist files into build_tools/make_dist (until we move "make dist" functionality into automake) * For now, we don't try to compile ppp/ as it wasn't compiled from the top-level Makefile before. Signed-off-by: Tzafrir Cohen <tzafrir.cohen@xorcom.com>
41 lines
862 B
Bash
Executable File
41 lines
862 B
Bash
Executable File
#! /bin/sh
|
|
|
|
if [ "$#" -ne 2 ]; then
|
|
echo >&2 "Usage: $0 <package> <version>"
|
|
exit 1
|
|
fi
|
|
package="$1"
|
|
version="$2"
|
|
tarball_prefix="$package-$version"
|
|
echo "I: Making dist tarball for $tarball_prefix"
|
|
tarball_name="$tarball_prefix.tar.gz"
|
|
|
|
tmp_work_dir=".tmp"
|
|
tmp_version_dir="$tmp_work_dir/$tarball_prefix"
|
|
|
|
if [ "$DESTDIR" != '' ]; then
|
|
destdir="$DESTDIR/"
|
|
fi
|
|
output="$destdir$tarball_name"
|
|
|
|
mkdir -p "$tmp_version_dir"
|
|
git archive --format tar HEAD | tar xf - -C "$tmp_version_dir"
|
|
echo "$version" > "$tmp_version_dir/.version"
|
|
extra_dist='
|
|
autoconfig.h.in
|
|
configure
|
|
ppp/Makefile
|
|
Makefile
|
|
xpp/Makefile
|
|
ppp/Makefile.in
|
|
Makefile.in
|
|
xpp/Makefile.in
|
|
auxdir/install-sh
|
|
auxdir/missing
|
|
'
|
|
|
|
find $extra_dist | cpio -pudmv "$tmp_version_dir"
|
|
tar czf "$output" -C "$tmp_work_dir" "$tarball_prefix"
|
|
rm -rf "$tmp_work_dir"
|
|
echo "I: tarball is ready: '$output'"
|