#!/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/lxqt.scm
AgeCommit message (Expand)Author
2020-11-19gnu: Don't append '.git' to GitHub uris.Efraim Flashner
2020-10-20gnu: pcmanfm-qt: Fix default wallpaper load path.Reza Alizadeh Majd
2020-10-20gnu: lxqt-session: Wrap startlxqt executable.Reza Alizadeh Majd
2020-10-20gnu: lxqt-session: Fix xsession entry exec path.Reza Alizadeh Majd
2020-09-06gnu: lxqt-panel: Patch xkeyboard-config location.Hamzeh Nasajpour
2020-08-22gnu: lxqt: Enable keyboard shortcuts.Timotej Lazar
2020-08-13gnu: lxqt-panel: Show icons in menus.Timotej Lazar
2020-07-17gnu: Update the LXQt home page.Tobias Geerinckx-Rice
2020-07-12gnu: Remove ".git" from "https://github/…/….git".Ludovic Courtès