mirror of git://git.sv.gnu.org/nano.git
62 lines
998 B
Bash
Executable File
62 lines
998 B
Bash
Executable File
#!/bin/sh
|
|
# Generate configure & friends for GIT users.
|
|
|
|
gnulib_url="git://git.sv.gnu.org/gnulib.git"
|
|
gnulib_hash="f00af4baf2c7416c5d7c4674c072ef2a51e40668"
|
|
|
|
modules="
|
|
futimens
|
|
getdelim
|
|
getline
|
|
getopt-gnu
|
|
glob
|
|
isblank
|
|
iswblank
|
|
lstat
|
|
mkstemps
|
|
nl_langinfo
|
|
regex
|
|
sigaction
|
|
snprintf-posix
|
|
stdarg
|
|
strcase
|
|
strcasestr-simple
|
|
strnlen
|
|
sys_wait
|
|
vsnprintf-posix
|
|
wchar
|
|
wctype-h
|
|
wcwidth
|
|
"
|
|
|
|
# Make sure the local gnulib git repo is up-to-date.
|
|
if [ ! -d "gnulib" ]; then
|
|
git clone --depth=1111 ${gnulib_url}
|
|
fi
|
|
cd gnulib >/dev/null || exit 1
|
|
curr_hash=$(git log -1 --format=%H)
|
|
if [ "${gnulib_hash}" != "${curr_hash}" ]; then
|
|
echo "Pulling..."
|
|
git pull
|
|
git checkout --force ${gnulib_hash}
|
|
fi
|
|
cd .. >/dev/null || exit 1
|
|
|
|
echo "Autopoint..."
|
|
autopoint --force
|
|
|
|
rm -rf lib
|
|
echo "Gnulib-tool..."
|
|
./gnulib/gnulib-tool --import ${modules}
|
|
echo
|
|
|
|
echo "Aclocal..."
|
|
aclocal -I m4
|
|
echo "Autoconf..."
|
|
autoconf
|
|
echo "Autoheader..."
|
|
autoheader
|
|
echo "Automake..."
|
|
automake --add-missing
|
|
echo "Done."
|