about summary refs log tree commit diff stats
path: root/termbox/termbox.c
Commit message (Expand)AuthorAgeFilesLines
* 3862Kartik K. Agaram2017-05-191-13/+12
* 3861 - screen untouched when entering console modeKartik K. Agaram2017-05-181-1/+0
* 3860 - stop buffering the screen in termboxKartik K. Agaram2017-05-181-171/+16
* 3858Kartik K. Agaram2017-05-131-5/+2
* 3857Kartik K. Agaram2017-05-131-12/+2
* 3854Kartik K. Agaram2017-05-131-7/+149
* 3842Kartik K. Agaram2017-05-041-16/+5
* 3824 - experiment: stop buffering in termboxKartik K. Agaram2017-04-161-146/+5
* 3222Kartik K. Agaram2016-08-181-0/+4
* 2131 - better tb_sync()Kartik K. Agaram2015-09-021-6/+10
* 2113 - stop updating entire screen on tb_present()Kartik K. Agaram2015-08-291-0/+9
* 2078 - update entire screen on tb_present()Kartik K. Agaram2015-08-261-4/+0
* 1964 - don't mess up pasteKartik K. Agaram2015-08-091-0/+2
* 1731 - ah, now fully responsiveKartik K. Agaram2015-07-081-0/+5
* 1573Kartik K. Agaram2015-06-161-0/+8
* 1531 - enable termbox's mouse supportKartik K. Agaram2015-06-051-0/+1
* 1530 - switch to termbox's 256-color modeKartik K. Agaram2015-06-051-34/+10
* 1486 - repl: hitting enter now workingKartik K. Agaram2015-05-271-0/+5
* 1327 - better error handling in chessboardKartik K. Agaram2015-05-101-2/+10
* 1323 - keyboard supports backspace and newlineKartik K. Agaram2015-05-101-4/+1
* 1276 - make C++ version the defaultKartik K. Agaram2015-05-051-0/+562
teral.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
# Build the latest Debian testing image
FROM debian:testing

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 \
  python-dev \
  libsqlite3-dev

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

RUN git clone git://github.com/boothj5/stabber.git
RUN git clone git://github.com/profanity-im/libmesode.git

WORKDIR /usr/src/stabber
RUN ./bootstrap.sh
RUN ./configure --prefix=/usr --disable-dependency-tracking
RUN make
RUN make install

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

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