#!/bin/sh
set -ex
LANG=${1:-it_IT.UTF-8}
rm -rf _inst
mkdir -p _inst/info
install -c -m 644 ./foo.info _inst/info
install-info --info-dir=_inst/info _inst/info/foo.info
fgrep 'Does nothing at all, but has a nice name' _inst/info/dir
exit 0
