#!/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\.,,' \ | xargs -n 1 -I{} basename {} .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\.,,' \ | xargs -n 1 -I{} basename {} .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 ect> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/services/sound.scm
AgeCommit message (Expand)Author
2020-05-06services: Do not use symbolic links in PulseAudio variables....Marius Bakke
2020-01-11services: Split ladspa-service-type from pulseaudio-service-type....Leo Prikler
2020-01-11services: pulseaudio-configuration: Set flat-volumes to no....Leo Prikler
2020-01-11services: Add pulseaudio-configuration....Leo Prikler
2020-01-08services: Add pulseaudio service....Oleg Pykhalov