summaryrefslogtreecommitdiff
path: root/taler-build/update_gnunet.sh
blob: 019623f06fbf8db6563d6c544a990777e02ad4c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

base=${TALER_DEPLOYMENT_BASE:-$HOME}

cd $base/gnunet/ && \
  svn revert -R . && \
  svn update && \
  ./bootstrap && \
  ./configure --prefix=$base/local --enable-logging=verbose --with-libgnurl=$base/local --with-microhttps=$base/local && \
  make && \
  make install