about summary refs log tree commit diff stats
path: root/build3
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2018-03-22 21:34:19 -0700
committerKartik K. Agaram <vc@akkartik.com>2018-03-22 21:34:19 -0700
commit6b1bd1ffadac8e6250600501ab9f872530d1da1e (patch)
tree44b215542cb7e841c28f417d3a128300cb81dc17 /build3
parentd37c983a778d53f991999e6b2b309a07a9bca0b0 (diff)
downloadmu-6b1bd1ffadac8e6250600501ab9f872530d1da1e.tar.gz
4232
Diffstat (limited to 'build3')
-rwxr-xr-xbuild33
1 files changed, 2 insertions, 1 deletions
diff --git a/build3 b/build3
index f73a5175..2563bdfe 100755
--- a/build3
+++ b/build3
@@ -6,7 +6,7 @@ set -e  # stop immediately on error
 
 # Some environment variables that can be passed in. For example, to turn off
 # optimization:
-#   $ CFLAGS=-g ./build0
+#   $ CFLAGS=-g ./build3
 test "$CXX" || export CXX=c++
 test "$CC" || export CC=cc
 test "$CFLAGS" || export CFLAGS="-g -O3"
@@ -194,3 +194,4 @@ exit 0
 #     touch a .cc layer but don't modify it; no output on second build
 #   only a single layer is recompiled when changing a C++ function
 #   stop immediately after failure in tangle
+#   stop immediately after target provided at commandline
20:13:41 +0200 ci: switch from libmesode to libstrophe' href='/danisanti/profani-tty/commit/Dockerfile.ubuntu?id=61cebcdf5b7b55967e0fb8ea4a9c29c079ade161'>61cebcdf ^
1de9cffd ^






1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55



























                                                                  

                         
                  

                         
 
                                                    

                
                                                 
                                                                           







                                                            
                           






                             
FROM ubuntu:latest

ENV DEBIAN_FRONTEND="noninteractive"

RUN apt-get update && apt-get install -y --no-install-recommends \
  autoconf \
  autoconf-archive \
  automake \
  expect \
  gcc \
  git \
  libcmocka-dev \
  libcurl3-dev \
  libgcrypt-dev \
  libglib2.0-dev \
  libgpgme11-dev \
  libgtk2.0-dev \
  libmicrohttpd-dev \
  libncursesw5-dev \
  libnotify-dev \
  libotr5-dev \
  libreadline-dev \
  libsignal-protocol-c-dev \
  libssl-dev \
  libtool \
  libxss-dev \
  make \
  pkg-config \
  python3-dev \
  python-dev-is-python3 \
  libsqlite3-dev \
  libgdk-pixbuf-2.0-dev \
  libqrencode-dev

RUN mkdir -p /usr/src/{stabber,libstrophe,profanity}
WORKDIR /usr/src

#RUN git clone https://github.com/boothj5/stabber
RUN git clone -c http.sslverify=false https://github.com/strophe/libstrophe

# TODO: Re-enable once libmicrohttpd-dev has been updated.
#WORKDIR /usr/src/stabber
#RUN ./bootstrap.sh
#RUN ./configure --prefix=/usr --disable-dependency-tracking
#RUN make
#RUN make install

WORKDIR /usr/src/libstrophe
RUN ./bootstrap.sh
RUN ./configure --prefix=/usr
RUN make
RUN make install

WORKDIR /usr/src/profanity
COPY . /usr/src/profanity