mirror of
https://github.com/cmosher01/Epple-II.git
synced 2024-12-28 08:30:51 +00:00
dist/download; colorize gcc log; use version attrib in doc; web compose conf
This commit is contained in:
parent
13e7baeeb1
commit
d2676bbfb8
10
Dockerfile
10
Dockerfile
@ -26,12 +26,15 @@ WORKDIR /root/
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
COPY config.site /usr/local/share/
|
||||||
|
|
||||||
COPY bootstrap ./
|
COPY bootstrap ./
|
||||||
|
|
||||||
COPY NEWS ./
|
COPY NEWS ./
|
||||||
COPY README ./
|
COPY README ./
|
||||||
COPY AUTHORS ./
|
COPY AUTHORS ./
|
||||||
COPY ChangeLog ./
|
COPY ChangeLog ./
|
||||||
|
COPY COPYING* ./
|
||||||
|
|
||||||
COPY configure.ac ./
|
COPY configure.ac ./
|
||||||
|
|
||||||
@ -51,11 +54,16 @@ RUN ./bootstrap 2>&1 | tee -a $BUILD_LOG
|
|||||||
RUN ./configure 2>&1 | tee -a $BUILD_LOG
|
RUN ./configure 2>&1 | tee -a $BUILD_LOG
|
||||||
RUN make 2>&1 | tee -a $BUILD_LOG
|
RUN make 2>&1 | tee -a $BUILD_LOG
|
||||||
RUN make check 2>&1 | tee -a $BUILD_LOG
|
RUN make check 2>&1 | tee -a $BUILD_LOG
|
||||||
|
RUN make dist 2>&1 | tee -a $BUILD_LOG
|
||||||
|
RUN make distcheck 2>&1 | tee -a $BUILD_LOG
|
||||||
RUN make install 2>&1 | tee -a $BUILD_LOG
|
RUN make install 2>&1 | tee -a $BUILD_LOG
|
||||||
RUN make html 2>&1 | tee -a $BUILD_LOG
|
RUN make html 2>&1 | tee -a $BUILD_LOG
|
||||||
RUN make install-html 2>&1 | tee -a $BUILD_LOG
|
RUN make install-html 2>&1 | tee -a $BUILD_LOG
|
||||||
|
RUN make installcheck 2>&1 | tee -a $BUILD_LOG
|
||||||
|
|
||||||
|
RUN mkdir /usr/local/share/doc/epple2/download && \
|
||||||
|
cd /usr/local/share/doc/epple2/download && \
|
||||||
|
ln -s ~/epple2-*.tar.gz
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
1
config.site
Normal file
1
config.site
Normal file
@ -0,0 +1 @@
|
|||||||
|
test -z "$CXXFLAGS" && CXXFLAGS=-fdiagnostics-color=always
|
@ -1,7 +1,7 @@
|
|||||||
SUFFIXES = .asciidoc .html
|
SUFFIXES = .asciidoc .html
|
||||||
|
|
||||||
.asciidoc.html :
|
.asciidoc.html :
|
||||||
asciidoc -b html5 $<
|
asciidoc -b html5 -a VERSION=@VERSION@ $<
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,14 +14,12 @@ are available at the http://mosher.mine.nu/apple2/[Apple II Library].
|
|||||||
The following software is licensed under
|
The following software is licensed under
|
||||||
http://www.gnu.org/licenses/gpl-3.0-standalone.html[GPLv3].
|
http://www.gnu.org/licenses/gpl-3.0-standalone.html[GPLv3].
|
||||||
|
|
||||||
Epple ][ Program:: http://mosher.mine.nu/epple2/download/epple2-latest.tar.gz[epple2.tar.gz]
|
Epple ][ Program:: link:download/epple2-{VERSION}.tar.gz[epple2-{VERSION}.tar.gz]
|
||||||
ROMs (System Demo and Cards):: http://mosher.mine.nu/epple2/download/epple2sys-latest.tar.gz[epple2sys.tar.gz]
|
|
||||||
|
|
||||||
See <<_building_from_source,Building>> on how to build from sources.
|
See <<_building_from_source,Building>> on how to build from sources.
|
||||||
|
|
||||||
Source code is hosted on github:
|
Source code is hosted on github:
|
||||||
https://github.com/cmosher01/Epple-II/[Epple-II]
|
https://github.com/cmosher01/Epple-II/[Epple-II]
|
||||||
https://github.com/cmosher01/Epple-II-ROM/[Epple-II-ROM]
|
|
||||||
|
|
||||||
|
|
||||||
== What To Download
|
== What To Download
|
||||||
|
6
docker-compose-web.yml
Normal file
6
docker-compose-web.yml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
epple2:
|
||||||
|
build: .
|
||||||
|
command: -c web
|
||||||
|
ports:
|
||||||
|
- "8080:80"
|
Loading…
Reference in New Issue
Block a user