Skip to content

Commit

Permalink
updated couchdb source install for maverick
Browse files Browse the repository at this point in the history
  • Loading branch information
jtimberman committed Nov 11, 2010
1 parent 4f175b9 commit 190cf36
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 50 deletions.
96 changes: 48 additions & 48 deletions metadata.json
@@ -1,55 +1,55 @@
{ {
"name": "couchdb", "name": "couchdb",
"description": "Installs CouchDB package and starts service", "description": "Installs CouchDB package and starts service",
"long_description": "Installs the CouchDB package if it is available from an package repository on\nthe node. If the package repository is not available, CouchDB needs to be \ninstalled via some other method, either a backported package, or compiled \ndirectly from source. CouchDB is available on Red Hat-based systems through\nthe EPEL Yum Repository.\n", "long_description": "Installs the CouchDB package if it is available from an package repository on\nthe node. If the package repository is not available, CouchDB needs to be \ninstalled via some other method, either a backported package, or compiled \ndirectly from source. CouchDB is available on Red Hat-based systems through\nthe EPEL Yum Repository.\n",
"maintainer": "Opscode, Inc.", "maintainer": "Opscode, Inc.",
"maintainer_email": "cookbooks@opscode.com", "maintainer_email": "cookbooks@opscode.com",
"license": "Apache 2.0", "license": "Apache 2.0",
"platforms": { "platforms": {
"ubuntu": [ "ubuntu": [
">= 8.10" ">= 8.10"
], ],
"debian": [ "debian": [
">= 5.0" ">= 5.0"
], ],
"openbsd": [ "openbsd": [


], ],
"freebsd": [ "freebsd": [


], ],
"rhel": [ "rhel": [


], ],
"centos": [ "centos": [


], ],
"fedora": [ "fedora": [


] ]
}, },
"dependencies": { "dependencies": {
"erlang": [ "erlang": [


] ]
}, },
"recommendations": { "recommendations": {
}, },
"suggestions": { "suggestions": {
}, },
"conflicting": { "conflicting": {
}, },
"providing": { "providing": {
}, },
"replacing": { "replacing": {
}, },
"attributes": { "attributes": {
}, },
"groupings": { "groupings": {
}, },
"recipes": { "recipes": {
"couchdb": "Installs and configures CouchDB package", "couchdb": "Installs and configures CouchDB package",
"couchdb::source": "Installs and configures CouchDB from source" "couchdb::source": "Installs and configures CouchDB from source"
}, },
"version": "0.14.0" "version": "0.14.1"
} }
2 changes: 1 addition & 1 deletion metadata.rb
Expand Up @@ -9,7 +9,7 @@
directly from source. CouchDB is available on Red Hat-based systems through directly from source. CouchDB is available on Red Hat-based systems through
the EPEL Yum Repository. the EPEL Yum Repository.
EOH EOH
version "0.14.0" version "0.14.1"
depends "erlang" depends "erlang"
recipe "couchdb", "Installs and configures CouchDB package" recipe "couchdb", "Installs and configures CouchDB package"
recipe "couchdb::source", "Installs and configures CouchDB from source" recipe "couchdb::source", "Installs and configures CouchDB from source"
Expand Down
2 changes: 1 addition & 1 deletion recipes/source.rb
Expand Up @@ -46,7 +46,7 @@
package pkg package pkg
end end


if node[:platform_version].to_f == 10.04 if node[:platform_version].to_f >= 10.04
compile_flags = "--with-js-lib=/usr/lib/xulrunner-devel-1.9.2.8/lib --with-js-include=/usr/lib/xulrunner-devel-1.9.2.8/include" compile_flags = "--with-js-lib=/usr/lib/xulrunner-devel-1.9.2.8/lib --with-js-include=/usr/lib/xulrunner-devel-1.9.2.8/include"
end end
end end
Expand Down

0 comments on commit 190cf36

Please sign in to comment.