mirror of
https://github.com/TokTok/c-toxcore
synced 2026-04-26 23:55:44 +00:00
12 lines
376 B
Docker
12 lines
376 B
Docker
FROM toxchat/pkgsrc:latest
|
|
|
|
WORKDIR /work
|
|
COPY . /work/c-toxcore-0.2.18
|
|
RUN ["tar", "zcf", "c-toxcore.tar.gz", "c-toxcore-0.2.18"]
|
|
|
|
WORKDIR /work/pkgsrc/chat/toxcore
|
|
RUN ["sed", "-i", "-e", "s/libtoxcore.so.2.18.0/libtoxcore.so.2.19.0/g", "PLIST"]
|
|
RUN ["bmake", "clean"]
|
|
RUN ["bmake", "DISTFILES=c-toxcore.tar.gz", "DISTDIR=/work", "NO_CHECKSUM=yes"]
|
|
RUN ["bmake", "install"]
|