SparkleShare/scripts/ci/Dockerfile

53 lines
935 B
Docker
Raw Permalink Normal View History

2018-02-19 17:51:30 +00:00
FROM ubuntu:17.10
2017-02-21 18:26:23 +00:00
RUN apt-get update
RUN apt-get install -y \
2018-02-19 17:51:30 +00:00
automake \
autoconf \
2017-02-21 18:26:23 +00:00
desktop-file-utils \
git \
gtk-sharp3-gapi \
2017-07-31 11:03:52 +00:00
libappindicator3-0.1-cil-dev \
2017-02-21 18:26:23 +00:00
libdbus-glib2.0-cil-dev \
libgtk3.0-cil-dev \
2018-02-20 02:22:54 +00:00
libmono-system-xml-linq4.0-cil \
2017-02-21 18:26:23 +00:00
libsoup2.4-dev \
libtool-bin \
libwebkit2gtk-4.0 \
mono-devel \
mono-mcs \
2018-02-19 17:51:30 +00:00
ninja-build \
python3-pip \
2017-02-21 18:26:23 +00:00
xsltproc
2018-02-19 17:51:30 +00:00
RUN pip3 install meson
2017-02-21 18:26:23 +00:00
RUN git clone https://github.com/hbons/notify-sharp && \
cd notify-sharp/ && \
./autogen.sh --disable-docs && \
make && make install
RUN cd ../
RUN git clone https://github.com/hbons/soup-sharp && \
cd soup-sharp/ && \
./autogen.sh && \
make && make install
RUN cd ../
RUN git clone https://github.com/hbons/webkit2gtk-sharp && \
cd webkit2gtk-sharp/ && \
./autogen.sh && \
make && make install
RUN cd ../
COPY ./ ./
2018-02-19 17:51:30 +00:00
RUN mkdir build/
RUN meson build/ && \
cd build/ && \
ninja && ninja install
2017-02-21 18:26:23 +00:00