nixpkgs/pkgs/applications/office/openoffice/generate-libreoffice-srcs.sh
Lluís Batlle i Rossell 6b88ad4b16 I try to package libreoffice 3.5, as there was a weird segfault in 3.4, and they
changed the build system in 3.5. It still does not build either... hopefully
by more reachable troubles.

svn path=/nixpkgs/trunk/; revision=33022
2012-03-12 20:15:08 +00:00

19 lines
299 B
Bash

#!/var/run/current-system/bin/bash
# Take the list of files from the main package, ooo.lst.in
echo '{fetchurl} : ['
while read a; do
URL=http://dev-www.libreoffice.org/src/$a
MD5=${a::32}
echo '(fetchurl {'
echo " url = \"$URL\";"
echo " md5 = \"$MD5\";"
echo '})'
done
echo ']'