This repository has been archived by the owner on Sep 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 374
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add recipe for leiningen. It just downloads the installer and runs it.
- Loading branch information
1 parent
64cc541
commit f8dbd7c
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
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 |
This file contains 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
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" |