6b88ad4b16
changed the build system in 3.5. It still does not build either... hopefully by more reachable troubles. svn path=/nixpkgs/trunk/; revision=33022
19 lines
299 B
Bash
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 ']'
|