From a47008cfa0a0206baff2ed62af2c5d2bccaa8e7d Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Fri, 26 Feb 2016 18:51:23 +0100 Subject: machines/katara: different temporary libreoffice Uses a custom nixpkgs Github rev clone now instead of copying the files over and having to recompile. --- .../libreoffice/generate-libreoffice-srcs.sh | 66 ---------------------- 1 file changed, 66 deletions(-) delete mode 100755 machines/profpatsch/libreoffice/generate-libreoffice-srcs.sh (limited to 'machines/profpatsch/libreoffice/generate-libreoffice-srcs.sh') diff --git a/machines/profpatsch/libreoffice/generate-libreoffice-srcs.sh b/machines/profpatsch/libreoffice/generate-libreoffice-srcs.sh deleted file mode 100755 index bba1ad9c..00000000 --- a/machines/profpatsch/libreoffice/generate-libreoffice-srcs.sh +++ /dev/null @@ -1,66 +0,0 @@ -#!/run/current-system/sw/bin/bash - -# Ideally we would move as much as possible into derivation dependencies - -# Take the list of files from the main package, ooo.lst.in - -# This script wants an argument: download list file - -cat <&2; - eval "${line#* }"; - ;; - \#*) - echo Skipping comment: "$line" >&2; - ;; - *_MD5SUM\ :=*) - read tbline; - line=${line##* }; - if [ "${tbline#*VERSION_MICRO}" != "$tbline" ]; then - verline=${tbline##* }; - read tbline; - tbline=${tbline##* }; - md5=$line - name=$tbline; - name="${name/\$([A-Z]*_VERSION_MICRO)/$verline}" - else - tbline=${tbline##* }; - md5=$line - name=$tbline; - fi - brief=true; - write_entry; - ;; - *_TARBALL\ :=*) - line=${line##* }; - line="${line#,}" - md5=${line:0:32}; - name=${line:33}; - name="${name%)}" - brief=false; - write_entry; - ;; - *) - echo Skipping: "$line" >&2; - ;; - esac -done - -echo ']' -- cgit 1.4.1