mirror of
https://gitlab.com/scemama/qmcchem.git
synced 2024-11-07 06:33:38 +01:00
Atomic wget
This commit is contained in:
parent
60fe37bbf1
commit
a03fce5eff
@ -3,19 +3,19 @@
|
|||||||
# URLs
|
# URLs
|
||||||
######
|
######
|
||||||
|
|
||||||
URL_OPAM ="http://raw.github.com/ocaml/opam/master/shell/opam_installer.sh"
|
URL_OPAM ="https://raw.github.com/ocaml/opam/master/shell/opam_installer.sh"
|
||||||
URL_IRPF90="http://github.com/scemama/irpf90/archive/v1.6.7.tar.gz"
|
URL_IRPF90="https://github.com/scemama/irpf90/archive/v1.6.7.tar.gz"
|
||||||
URL_EZFIO ="http://github.com/scemama/EZFIO/archive/v1.3.1.tar.gz"
|
URL_EZFIO ="https://github.com/scemama/EZFIO/archive/v1.3.1.tar.gz"
|
||||||
|
|
||||||
URL_ZMQ ="http://download.zeromq.org/zeromq-4.0.7.tar.gz"
|
URL_ZMQ ="http://download.zeromq.org/zeromq-4.0.7.tar.gz"
|
||||||
#URL_ZMQ ="http://download.zeromq.org/zeromq-4.1.3.tar.gz"
|
#URL_ZMQ ="http://download.zeromq.org/zeromq-4.1.3.tar.gz"
|
||||||
URL_F77ZMQ="http://github.com/scemama/f77_zmq/archive/v4.1.3.tar.gz"
|
URL_F77ZMQ="https://github.com/scemama/f77_zmq/archive/v4.1.3.tar.gz"
|
||||||
|
|
||||||
# Rules
|
# Rules
|
||||||
#######
|
#######
|
||||||
|
|
||||||
rule download
|
rule download
|
||||||
command = wget ${url} -O ${out} -o /dev/null
|
command = wget ${url} -O ${out}.tmp -o /dev/null && mv ${out}.tmp ${out}
|
||||||
description = Downloading ${descr}
|
description = Downloading ${descr}
|
||||||
|
|
||||||
rule install
|
rule install
|
||||||
|
@ -20,7 +20,8 @@ function _install()
|
|||||||
|
|
||||||
if [[ ! -f "Downloads/${TARGET}.tar.gz" ]]
|
if [[ ! -f "Downloads/${TARGET}.tar.gz" ]]
|
||||||
then
|
then
|
||||||
wget ${URL} -O "Downloads/${TARGET}.tar.gz"
|
wget ${URL} -O "Downloads/${TARGET}.tar.gz.tmp"
|
||||||
|
mv "Downloads/${TARGET}.tar.gz"{.tmp,}
|
||||||
fi
|
fi
|
||||||
source scripts/build.sh
|
source scripts/build.sh
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user