nixpkgs/pkgs/applications/office/libreoffice/generate-libreoffice-srcs.sh

21 lines
294 B
Bash
Raw Normal View History

2013-08-31 23:57:33 +00:00
#!/run/current-system/sw/bin/bash
# Take the list of files from the main package, ooo.lst.in
cat <<EOF
[
EOF
read file
while read file; do
if [[ "$file" == @* ]]; then
break
fi
echo '{'
echo " name = \"${file:33}\";"
echo " md5 = \"${file:0:32}\";"
echo '}'
done
echo ']'