summaryrefslogtreecommitdiff
path: root/homebrew/lci
diff options
context:
space:
mode:
authorMCApollo <34170230+MCApollo@users.noreply.github.com>2019-04-20 20:49:46 -0500
committerMCApollo <34170230+MCApollo@users.noreply.github.com>2019-04-23 20:18:47 -0500
commit12335518ab39608d58370c85ff9f5384ad2aa5f7 (patch)
tree352d81f2a2de3f1252af732080ec0fde38c13b4d /homebrew/lci
parenta2b26ad12d4fa12f0273645caf4be6d0b8b71e7c (diff)
Ported in the homebrew-marauder for a hacky update/import system.
TODO: Maybe add a license & fix up messy code.
Diffstat (limited to 'homebrew/lci')
-rw-r--r--homebrew/lci/.beer22
-rw-r--r--homebrew/lci/.make.sh-auto3
-rw-r--r--homebrew/lci/_metadata/description1
-rw-r--r--homebrew/lci/_metadata/homepage1
-rw-r--r--homebrew/lci/_metadata/name1
-rw-r--r--homebrew/lci/_metadata/version1
-rwxr-xr-xhomebrew/lci/download.sh1
7 files changed, 30 insertions, 0 deletions
diff --git a/homebrew/lci/.beer b/homebrew/lci/.beer
new file mode 100644
index 000000000..a79a561a3
--- /dev/null
+++ b/homebrew/lci/.beer
@@ -0,0 +1,22 @@
+{
+ "name": "Lci",
+ "description": "Interpreter for the lambda calculus",
+ "url": "https://downloads.sourceforge.net/project/lci/lci/0.6/lci-0.6.tar.gz",
+ "mirror": null,
+ "homepage": "https://lci.sourceforge.io/",
+ "depends": [],
+ "resource": [],
+ "conflicts": [
+ {
+ "conflict": "lolcode",
+ "reason": "both install `lci` binaries"
+ }
+ ],
+ "patches": [],
+ "install": [
+ "system \"./configure\", \"--prefix=#{prefix}\"",
+ "system \"make\", \"install\""
+ ],
+ "version": "0.6",
+ "file": "lci.rb"
+} \ No newline at end of file
diff --git a/homebrew/lci/.make.sh-auto b/homebrew/lci/.make.sh-auto
new file mode 100644
index 000000000..abf08b27d
--- /dev/null
+++ b/homebrew/lci/.make.sh-auto
@@ -0,0 +1,3 @@
+pkg:setup
+pkg:configure
+make DESTDIR=${PKG_DEST} install
diff --git a/homebrew/lci/_metadata/description b/homebrew/lci/_metadata/description
new file mode 100644
index 000000000..0d727b3f3
--- /dev/null
+++ b/homebrew/lci/_metadata/description
@@ -0,0 +1 @@
+Interpreter for the lambda calculus
diff --git a/homebrew/lci/_metadata/homepage b/homebrew/lci/_metadata/homepage
new file mode 100644
index 000000000..ec8fe16e9
--- /dev/null
+++ b/homebrew/lci/_metadata/homepage
@@ -0,0 +1 @@
+https://lci.sourceforge.io/
diff --git a/homebrew/lci/_metadata/name b/homebrew/lci/_metadata/name
new file mode 100644
index 000000000..e85b1c3d1
--- /dev/null
+++ b/homebrew/lci/_metadata/name
@@ -0,0 +1 @@
+Lci
diff --git a/homebrew/lci/_metadata/version b/homebrew/lci/_metadata/version
new file mode 100644
index 000000000..5a2a5806d
--- /dev/null
+++ b/homebrew/lci/_metadata/version
@@ -0,0 +1 @@
+0.6
diff --git a/homebrew/lci/download.sh b/homebrew/lci/download.sh
new file mode 100755
index 000000000..db74685e2
--- /dev/null
+++ b/homebrew/lci/download.sh
@@ -0,0 +1 @@
+wget https://downloads.sourceforge.net/project/lci/lci/0.6/lci-0.6.tar.gz \ No newline at end of file