commit 739e64d340cb632da15f96564ddaf31d2845658e
parent c65e40c7d562c672ba95b47be7c187e8942ad0a6
Author: Erik Oosting <crazazy@tilde.cafe>
Date: Tue, 22 Feb 2022 13:10:31 +0100
initial commit
Diffstat:
4 files changed, 30 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
@@ -0,0 +1,12 @@
+# Compiled
+*.elc
+
+# Packaging
+.cask
+
+# Backup files
+*~
+
+# Undo-tree save-files
+*.~undo-tree./docs/elpa/
+/.github-elpa-working/
diff --git a/Cask b/Cask
@@ -0,0 +1,4 @@
+(source gnu)
+(source melpa)
+
+(depends-on "github-elpa")+
\ No newline at end of file
diff --git a/build.sh b/build.sh
@@ -0,0 +1,11 @@
+#!/usr/bin/env nix-shell
+#!nix-shell -p sshfs cask
+if [! -d .cask ]; then
+ cask install
+fi
+mkdir -p docs/elpa
+if [-z "$(ls -A ./docs/elpa)"]; then
+ sshfs cafe:public_html/elpa ./docs/elpa
+fi
+
+cask exec github-elpa update
diff --git a/recipes/emenu b/recipes/emenu
@@ -0,0 +1 @@
+(emenu :fetcher git :url "https://tilde.cafe/~crazazy/emenu.git")+
\ No newline at end of file