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
23:21:56 +0100'>2019-12-11gnu: libtheora: Do not build static libraries....Marius Bakke 2019-12-11gnu: libvorbis: Do not build static libraries....Marius Bakke 2019-12-11gnu: libogg: Do not build static libraries....Marius Bakke 2019-12-11gnu: opus: Do not build static libraries....Marius Bakke 2019-12-11gnu: speex: Do not build static libraries....Marius Bakke 2019-10-13Merge branch 'master' into stagingMarius Bakke 2019-10-13gnu: ao: Update to 1.2.2-5-g20dc8ed [fixes CVE-2017-11548]....Marius Bakke 2019-10-13gnu: ao: Specify CPE name....Marius Bakke 2019-10-08gnu: libogg: Update to 1.3.4....Marius Bakke 2019-08-04gnu: flac: Update to 1.3.3....Marius Bakke 2019-06-14gnu: speexdsp: Update to 1.2.0....Marius Bakke 2019-05-24Merge branch 'master' into stagingMarius Bakke 2019-05-11gnu: libshout: Update to 2.4.2....Tobias Geerinckx-Rice 2019-05-11gnu: libshout: Don't use NAME in source URI....Tobias Geerinckx-Rice