File: Dockerfile.archlinux

package info (click to toggle)
indi 2.1.9%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 15,888 kB
  • sloc: cpp: 217,447; ansic: 31,363; xml: 1,195; sh: 311; makefile: 13
file content (33 lines) | stat: -rw-r--r-- 617 bytes parent folder | download
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
FROM archlinux:latest

RUN pacman -Syu --noconfirm && pacman -S --noconfirm \
    base-devel \
    git \
    cmake \
    cfitsio \
    libnova \
    libusb \
    curl \
    gsl \
    libjpeg-turbo \
    fftw \
    libev \
    qt5-base \
    libftdi \
    libgphoto2 \
    boost \
    ffmpeg \
    libraw \
    libdc1394 \
    gpsd \
    rtl-sdr \
    zeromq

# Google Test
WORKDIR /tmp
RUN git clone https://github.com/google/googletest.git googletest && \
    cd googletest && \
    cmake -DCMAKE_INSTALL_PREFIX=/usr/local -DBUILD_SHARED_LIBS=ON . && \
    make && \
    make install && \
    rm -rf /tmp/googletest