# HG changeset patch # User Pascal Bellard # Date 1306835701 -7200 # Node ID 675153fbaf35dbbde5f2a5c57e48fc3b1508a26e # Parent 5ec8b1a4e241557f69ed1da95cc136b871118e4e vidalia: get source in $SOURCES_REPOSITORY (again) diff -r 5ec8b1a4e241 -r 675153fbaf35 vidalia/receipt --- a/vidalia/receipt Tue May 31 11:51:33 2011 +0200 +++ b/vidalia/receipt Tue May 31 11:55:01 2011 +0200 @@ -15,8 +15,10 @@ compile_rules() { # Have to use wget for https stuff - wget --no-check-certificate https://www.torproject.org/vidalia/dist/$TARBALL - tar xvf $TARBALL + [ -s ${SOURCE_REPOSITORY:-$SRC}/$TARBALL ] || + wget --no-check-certificate -P ${SOURCE_REPOSITORY:-$SRC} \ + https://www.torproject.org/vidalia/dist/$TARBALL + tar xvf ${SOURCE_REPOSITORY:-$SRC}/$TARBALL cd $src mkdir build && cd build cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&