In the beginning there was darkness

This commit is contained in:
Daniel Ziltener 2024-03-17 22:23:52 +01:00
commit f79312ed51
Signed by: zilti
GPG Key ID: B38976E82C9DAE42
2 changed files with 81 additions and 0 deletions

68
.gitignore vendored Normal file
View File

@ -0,0 +1,68 @@
# ---> Scheme
*.ss~
*.ss#*
.#*.ss
*.scm~
*.scm#*
.#*.scm
*.build.sh
*.install.sh
*.import.scm
# Compiled files
*.o
*.so
*.a
*.link
# ---> Emacs
# -*- mode: gitignore; -*-
*~
\#*\#
/.emacs.desktop
/.emacs.desktop.lock
*.elc
auto-save-list
tramp
.\#*
# Org-mode
.org-id-locations
*_archive
# flymake-mode
*_flymake.*
# eshell files
/eshell/history
/eshell/lastdir
# elpa packages
/elpa/
# reftex files
*.rel
# AUCTeX auto folder
/auto/
# cask packages
.cask/
dist/
# Flycheck
flycheck_*.el
# server auth directory
/server/
# projectiles files
.projectile
# directory configuration
.dir-locals.el
# network security
/network-security.data

13
qml.egg Normal file
View File

@ -0,0 +1,13 @@
;; -*- mode: scheme -*-
((author "Daniel Ziltener")
(synopsis "A Chicken binding to Qt/QML")
(category ui)
(license "LGPLv3")
(dependencies
r7rs
coops
coops-utils
foreigners
utf8
srfi-69
list-comprehensions))