2012-01-25 20:12:27 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
VERSIONBASE=3.4.5
|
|
|
|
|
|
|
|
VERSION=3.4.5.2
|
|
|
|
|
|
|
|
if [ $# -gt 2 ]; then
|
|
|
|
VERSIONBASE=$1
|
|
|
|
VERSION=$2
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo '{fetchurl} : ['
|
|
|
|
|
|
|
|
for a in artwork base bootstrap calc components extensions extras filters \
|
|
|
|
help impress libs-core libs-extern libs-extern-sys libs-gui postprocess \
|
2012-01-26 00:04:34 +01:00
|
|
|
translations ure writer sdk testing; do
|
2012-01-25 20:12:27 +01:00
|
|
|
|
|
|
|
URL=http://download.documentfoundation.org/libreoffice/src/$VERSIONBASE/libreoffice-$a-$VERSION.tar.bz2
|
|
|
|
|
|
|
|
echo '(fetchurl {'
|
|
|
|
echo " url = \"$URL\";"
|
|
|
|
echo " sha256 = \"`nix-prefetch-url $URL`\";"
|
|
|
|
echo '})'
|
|
|
|
done
|
|
|
|
|
|
|
|
echo ']'
|