#!/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 exec autoreconf -vfi Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/emulators.scm
AgeCommit message (Expand)Author
2023-07-16gnu: vice: Update to 3.7.1....* gnu/packages/emulators.scm (vice): Update to 3.7.1. Tobias Geerinckx-Rice
2023-06-10gnu: mgba: Update to 0.10.2....* gnu/packages/emulators.scm (mgba): Update to 0.10.2. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> altadil
2023-05-07gnu: ppsspp: Update to 1.14.4....* gnu/packages/emulators.scm (ppsspp): Update to 1.14.4. [source]<snippet>: Adjust accordingly. [arguments]<#:configure-flags>: Add “-DARMIPS_USE_STD_FILESYSTEM=ON” and “-DUSE_SYSTEM_ZSTD=ON”. <#:phases>: Drop replacement for ‘check’ phase. Drop ‘fix-unittest-build’. Do not add sources for pspautotests -- they are not tested in ‘check’ and some of them fail. * gnu/packages/patches/ppsspp-disable-upgrade-and-gold.patch: Adjust accordingly. Liliana Marie Prikler
2023-04-13gnu: uxn: Update to 0.1.0-1.83237c9....* gnu/packages/emulators.scm (uxn): Update to 0.1.0-1.83237c9. Signed-off-by: Christopher Baines <mail@cbaines.net> Yovan Naumovski
2023-03-31gnu: Add emu8051....* gnu/packages/emulators.scm (emu8051): New variable. Signed-off-by: 宋文武 <iyzsong@member.fsf.org> c4droid
2023-03-22gnu: mame: Update to 0.252....* gnu/packages/emulators.scm (mame): Update to 0.252. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Nicolas Goaziou