elpa

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit ae482c4ff58d1056fb2a9c5718381bcc1863c452
parent d7eb4ea1f7a081944c65d757aed9100365cadcee
Author: Crazazy <crazazy@tilde.cafe>
Date:   Tue, 22 Feb 2022 13:10:31 +0100

initial commit

Diffstat:
A.gitignore | 12++++++++++++
ACask | 5+++++
Abuild.sh | 11+++++++++++
Arecipes/emenu | 2++
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