mirror of
https://github.com/TokTok/c-toxcore
synced 2026-05-26 03:14:22 +00:00
bab03670b2
This release mostly focuses on fixes, but also brings some new apis.
15 lines
486 B
Docker
15 lines
486 B
Docker
FROM toxchat/pkgsrc:latest
|
|
|
|
WORKDIR /work
|
|
COPY . /work/c-toxcore-0.2.23
|
|
RUN ["tar", "zcf", "c-toxcore.tar.gz", "c-toxcore-0.2.23"]
|
|
|
|
WORKDIR /work/pkgsrc
|
|
COPY other/docker/pkgsrc/pkgsrc.patch /tmp/pkgsrc.patch
|
|
RUN ["patch", "-p1", "-i", "/tmp/pkgsrc.patch"]
|
|
|
|
WORKDIR /work/pkgsrc/chat/toxcore
|
|
RUN ["bmake", "clean"]
|
|
RUN ["bmake", "DISTFILES=c-toxcore.tar.gz", "DISTDIR=/work", "NO_CHECKSUM=yes"]
|
|
RUN ["bmake", "DISTFILES=c-toxcore.tar.gz", "DISTDIR=/work", "NO_CHECKSUM=yes", "install"]
|