aboutsummaryrefslogtreecommitdiff
#!/bin/sh
# Create the build system.

set -e -x

# Generate stubs for translations.
langs=`find po/doc -type f -name 'guix-manual*.po' \
        | sed -e 's,.*/guix-manual\.,,;s,\.po$,,'`
for lang in ${langs}; do
    if [ ! -e "doc/guix.${lang}.texi" ]; then
	echo "@setfilename guix.${lang}.info" > "doc/guix.${lang}.texi"
	echo "@include version-${lang}.texi" >> "doc/guix.${lang}.texi"
	# Ensure .po file is newer.
	touch "po/doc/guix-manual.${lang}.po"
    fi
done
langs=`find po/doc -type f -name 'guix-cookbook*.po' \
        | sed -e 's,.*/guix-cookbook\.,,;s,\.po$,,'`
for lang in ${langs}; do
    if [ ! -e "doc/guix-cookbook.${lang}.texi" ]; then
	echo "@setfilename guix-cookbook.${lang}.info" > "doc/guix-cookbook.${lang}.texi"
	# Ensure .po file is newer.
	touch "po/doc/guix-cookbook.${lang}.po"
    fi
done

autoreconf -vfi

# Replace Automake's build-aux/mdate-sh with build-aux/mdate-from-git, our
# own, reproducible version.
chmod +w build-aux/mdate-sh
rm -f build-aux/mdate-sh
ln -s mdate-from-git.scm build-aux/mdate-sh
2019-06-19gnu: libfilezilla: Update to 0.16.0....Tobias Geerinckx-Rice 2019-03-31gnu: Fix descriptions to not use quotes....Efraim Flashner 2019-03-24gnu: filezilla: Update to 3.41.2 [security fixes]....Tobias Geerinckx-Rice 2019-03-10gnu: FileZilla: Update to 3.41.1....Marius Bakke 2019-03-10gnu: pugixml is a regular input....Marius Bakke 2019-02-15gnu: filezilla: Update to 3.40.0....Tobias Geerinckx-Rice 2019-02-15gnu: libfilezilla: Don't use NAME in source URI....Tobias Geerinckx-Rice 2019-01-25gnu: ncftp: Use INVOKE....Ricardo Wurmus 2019-01-16gnu: Move sqlite to separate module....Ricardo Wurmus 2018-12-05gnu: filezilla: Update to 3.39.0....Rene 2018-12-05gnu: libfilezilla: Update to 0.15.1....Rene 2018-10-05gnu: filezilla: Update to 3.37.4....Tobias Geerinckx-Rice 2018-10-05gnu: libfilezilla: Update to 0.14.0....Tobias Geerinckx-Rice 2018-09-21gnu: filezilla: Update to 3.37.1....Tobias Geerinckx-Rice 2018-09-21gnu: libfilezilla: Update to 0.13.2....Tobias Geerinckx-Rice 2018-09-12gnu: libfilezilla: Update to 0.13.1....Tobias Geerinckx-Rice 2018-08-09gnu: lftp: Update to 4.8.4....Marius Bakke