File: centos7-cm-destdir-sdl2.dockerfile

package info (click to toggle)
zziplib 0.13.78%2Bdfsg.1-0.1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 4,544 kB
  • sloc: python: 12,101; ansic: 9,092; sh: 6,293; perl: 2,376; makefile: 1,014; sed: 47
file content (23 lines) | stat: -rw-r--r-- 630 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
FROM centos:7.9.2009
ARG no_check=false
ARG no_install=false

RUN yum install -y epel-release
RUN echo sslverify=false >> /etc/yum.conf
RUN yum install -y gcc zlib-devel python3 cmake3 make unzip zip gzip tar  SDL2-devel

RUN mkdir src
COPY CMakeLists.txt README COPYING.LIB ChangeLog src/
COPY CMakeScripts src/CMakeScripts
COPY bins src/bins
COPY docs src/docs
COPY test src/test
COPY SDL src/SDL
COPY zzipwrap src/zzipwrap
COPY zzip src/zzip

RUN mkdir src/build
RUN cd src/build && cmake3 ..
RUN cd src/build && make
RUN $no_check || (cd src/build && make check)
RUN $no_install || (cd src/build && make install DESTDIR=/new)