1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
#! /bin/sh
# SPDX-License-Identifier: GPL-2
set -e
set -x
if [ ! -r acinclude.m4 ] ; then
if [ -r '/usr/share/aclocal/sdl.m4' ]; then \
cat '/usr/share/aclocal/sdl.m4' >> acinclude.m4
else
curl -o acinclude.m4 \
'https://hg.libsdl.org/SDL/raw-file/d4d66a1891fc/sdl.m4'
fi
fi
libtoolize --version
aclocal --version
autoheader --version
automake --version
autoconf --version
rm -rf libltdl
[ -r AUTHORS ] || touch AUTHORS
[ -r ChangeLog ] || touch ChangeLog
[ -r NEWS ] || touch NEWS
[ -r README ] || ln -fs README.md README
[ -r README.md ] || touch README.md
libtoolize --ltdl --force --copy
aclocal
autoheader
automake --add-missing
autoconf
|