Skip to content
This repository has been archived by the owner on Sep 29, 2022. It is now read-only.

Commit

Permalink
Add recipe for leiningen. It just downloads the installer and runs it.
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-blanchard committed Jul 22, 2014
1 parent 64cc541 commit f8dbd7c
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
6 changes: 6 additions & 0 deletions leiningen/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash

mkdir -p $PREFIX/bin
curl -o $PREFIX/bin/lein 'https://raw.githubusercontent.com/technomancy/leiningen/2.4.2/bin/lein'
chmod a+x $PREFIX/bin/lein
$PREFIX/bin/lein
21 changes: 21 additions & 0 deletions leiningen/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
package:
name: leiningen
version: 2.4.2

# source:
# fn: lein
# url: https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein
# md5: f14b1b0d56aac1da8abb37f30ab70dc3

requirements:
build:
- curl

test:
commands:
- lein --help

about:
home: http://leiningen.org
license: Eclipse Public License
summary: "for automating Clojure projects without setting your hair on fire"

0 comments on commit f8dbd7c

Please sign in to comment.