Compare commits

..

No commits in common. "b9269d13a0f2761e99e3ec2a2fd3720bb4f87a9f" and "a89d38abe3f713b4c467e47261a05c404e64ff84" have entirely different histories.

7 changed files with 0 additions and 71 deletions

View File

@ -1,7 +0,0 @@
#!/bin/bash
sudo docker run \
--cpus=2 \
-v $PWD:/usr/src/ \
povray_existing \
sh -c "${1}"

View File

@ -1,2 +0,0 @@
povray
bin

View File

@ -1,34 +0,0 @@
FROM ubuntu:focal
RUN apt update
RUN DEBIAN_FRONTEND=noninteractive apt install -y \
git \
bash \
build-essential \
coreutils \
libboost-all-dev \
libboost-date-time-dev \
libz-dev \
libpng-dev \
libjpeg-dev \
libtiff-dev \
libopenexr-dev \
libsdl-dev \
libilmbase-dev \
autoconf \
pkg-config \
automake \
make
WORKDIR /usr/src/
ENV POVRAY_VERSION=3.7-stable
RUN cd /usr/src/ && git clone --depth 1 --branch $POVRAY_VERSION https://github.com/POV-Ray/povray povray
WORKDIR /usr/src/povray
COPY ./compile_povray.sh /usr/src/povray/compile_povray.sh
RUN bash compile_povray.sh

View File

@ -1,3 +0,0 @@
#!/bin/bash
sudo docker build . -t povray_ubuntu_gcc

View File

@ -1,7 +0,0 @@
#!/bin/bash
sudo docker run \
--cpus=2 \
-v $PWD:/usr/src \
povray_ubuntu_gcc \
sh -c "${1}"

View File

@ -1,7 +0,0 @@
#!/bin/bash
sudo docker run \
--cpus=2 \
-v $PWD/compile_povray.sh:/usr/src/povray/compile_povray.sh \
povray_ubuntu_gcc \
sh -c 'sh compile_povray.sh'

View File

@ -1,11 +0,0 @@
#!/bin/bash -x
EMAIL="hi@mmcwilliams.com"
NAME="Matt McWilliams"
cd unix/
./prebuild.sh
cd ../
./configure COMPILED_BY="$NAME <$EMAIL>"
make
make install