summaryrefslogtreecommitdiff
path: root/homebrew/couchdb
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/couchdb
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/couchdb')
-rw-r--r--homebrew/couchdb/.beer55
-rw-r--r--homebrew/couchdb/.make.sh-auto4
-rw-r--r--homebrew/couchdb/_metadata/description1
-rw-r--r--homebrew/couchdb/_metadata/homepage1
-rw-r--r--homebrew/couchdb/_metadata/name1
-rw-r--r--homebrew/couchdb/_metadata/version1
-rwxr-xr-xhomebrew/couchdb/download.sh1
7 files changed, 64 insertions, 0 deletions
diff --git a/homebrew/couchdb/.beer b/homebrew/couchdb/.beer
new file mode 100644
index 000000000..c4c9e17cc
--- /dev/null
+++ b/homebrew/couchdb/.beer
@@ -0,0 +1,55 @@
+{
+ "name": "Couchdb",
+ "description": "Document database server",
+ "url": "https://www.apache.org/dyn/closer.cgi?path=/couchdb/source/1.7.2/apache-couchdb-1.7.2.tar.gz",
+ "mirror": "https://archive.apache.org/dist/couchdb/source/1.7.2/apache-couchdb-1.7.2.tar.gz",
+ "homepage": "https://couchdb.apache.org/",
+ "depends": [
+ {
+ "depend": "autoconf",
+ "build-depend": true
+ },
+ {
+ "depend": "autoconf-archive",
+ "build-depend": true
+ },
+ {
+ "depend": "automake",
+ "build-depend": true
+ },
+ {
+ "depend": "help2man",
+ "build-depend": true
+ },
+ {
+ "depend": "libtool",
+ "build-depend": true
+ },
+ {
+ "depend": "pkg-config",
+ "build-depend": true
+ },
+ {
+ "depend": "erlang@19",
+ "build-depend": false
+ },
+ {
+ "depend": "icu4c",
+ "build-depend": false
+ },
+ {
+ "depend": "spidermonkey",
+ "build-depend": false
+ }
+ ],
+ "resource": [],
+ "conflicts": [],
+ "patches": [],
+ "install": [
+ "(var/\"lib/couchdb\").mkpath",
+ "(var/\"log/couchdb\").mkpath",
+ "(var/\"run/couchdb\").mkpath"
+ ],
+ "version": "1.7.2",
+ "file": "couchdb.rb"
+} \ No newline at end of file
diff --git a/homebrew/couchdb/.make.sh-auto b/homebrew/couchdb/.make.sh-auto
new file mode 100644
index 000000000..ce4779a82
--- /dev/null
+++ b/homebrew/couchdb/.make.sh-auto
@@ -0,0 +1,4 @@
+pkg:setup
+(var/"lib/couchdb").mkpath
+(var/"log/couchdb").mkpath
+(var/"run/couchdb").mkpath
diff --git a/homebrew/couchdb/_metadata/description b/homebrew/couchdb/_metadata/description
new file mode 100644
index 000000000..314c8b84a
--- /dev/null
+++ b/homebrew/couchdb/_metadata/description
@@ -0,0 +1 @@
+Document database server
diff --git a/homebrew/couchdb/_metadata/homepage b/homebrew/couchdb/_metadata/homepage
new file mode 100644
index 000000000..d10bf5a6c
--- /dev/null
+++ b/homebrew/couchdb/_metadata/homepage
@@ -0,0 +1 @@
+https://couchdb.apache.org/
diff --git a/homebrew/couchdb/_metadata/name b/homebrew/couchdb/_metadata/name
new file mode 100644
index 000000000..87b78e378
--- /dev/null
+++ b/homebrew/couchdb/_metadata/name
@@ -0,0 +1 @@
+Couchdb
diff --git a/homebrew/couchdb/_metadata/version b/homebrew/couchdb/_metadata/version
new file mode 100644
index 000000000..f8a696c8d
--- /dev/null
+++ b/homebrew/couchdb/_metadata/version
@@ -0,0 +1 @@
+1.7.2
diff --git a/homebrew/couchdb/download.sh b/homebrew/couchdb/download.sh
new file mode 100755
index 000000000..2329e373f
--- /dev/null
+++ b/homebrew/couchdb/download.sh
@@ -0,0 +1 @@
+wget https://www.apache.org/dyn/closer.cgi?path=/couchdb/source/1.7.2/apache-couchdb-1.7.2.tar.gz || wget https://archive.apache.org/dist/couchdb/source/1.7.2/apache-couchdb-1.7.2.tar.gz \ No newline at end of file