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
dovic Courtès <ludo@gnu.org> Pierre Langlois 2019-06-13gnu: gpodder: Only return #t when needed....* gnu/packages/gpodder.scm (gpodder)[arguments]: Return #t from 'do-not-run-msgmerge. Don't return #t from 'install. Efraim Flashner 2019-06-13gnu: gpodder: Update to 3.10.9....* gnu/packages/gpodder.scm (gpodder): Update to 3.10.9. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Pierre Langlois 2019-03-31gnu: gpodder: Build reproducibly....* gnu/packages/gpodder.scm (gpodder)[arguments]: Add 'do-not-run-msgmerge' phase before 'install'. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Pierre Langlois 2019-03-25gnu: Add gPodder....* gnu/packages/podcast.scm (gpodder): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Pierre Langlois 2019-03-25gnu: Add python-mygpoclient....* gnu/packages/gpodder.scm (python-mygpoclient): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Pierre Langlois 2019-03-23gnu: Add python-podcastparser....* gnu/packages/podcast.scm (python-podcastparser): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Pierre Langlois 2019-03-23gnu: libmygpo-qt: Move to new 'gpodder.scm' file....* gnu/packages/music.scm (libmygpo-qt): Move to 'gpodder.scm'. * gnu/packages/gpodder.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Pierre Langlois