This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; org-zettel --- Simple zettelkasten implement in Org-mode -*- lexical-binding: t -*- | |
;; Copyright (C) 2025 c4droid | |
;; Author: c4droid <c4droid@foxmail.com> | |
;; URL: https://codeberg.org/c4dr01d/org-zettel | |
;; Version: 0.1 | |
;; Package-Requires: ((emacs "27.1")) | |
;; Keywords: org |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Prepare environment | |
FROM alpine:latest | |
RUN sed -i 's#https\?://dl-cdn.alpinelinux.org/alpine#https://mirrors.tuna.tsinghua.edu.cn/alpine#g' /etc/apk/repositories | |
RUN apk update && \ | |
apk upgrade && \ | |
apk add --no-cache build-base pcre-dev zlib-dev gnutls-dev make git | |
# Building TinTin++ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Prepare environment | |
FROM alpine:latest | |
RUN sed -i 's#https\?://dl-cdn.alpinelinux.org/alpine#https://mirrors.tuna.tsinghua.edu.cn/alpine#g' /etc/apk/repositories | |
RUN apk update && \ | |
apk upgrade && \ | |
apk add --no-cache build-base make ncurses-dev git | |
# Building Chez Scheme |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Prepare environment | |
FROM alpine:latest | |
RUN sed -i 's#https\?://dl-cdn.alpinelinux.org/alpine#https://mirrors.tuna.tsinghua.edu.cn/alpine#g' /etc/apk/repositories | |
RUN apk update && \ | |
apk upgrade && \ | |
apk add --no-cache build-base make autoconf automake \ | |
gnutls-dev ncurses-dev libxml2-dev libxpm-dev tiff-dev giflib-dev \ | |
libpng-dev libjpeg-turbo-dev librsvg-dev lcms2-dev gnutls-dev zlib-dev \ |