forked from sous-chefs/erlang
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetadata.rb
More file actions
25 lines (21 loc) · 1.02 KB
/
Copy pathmetadata.rb
File metadata and controls
25 lines (21 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name 'erlang'
maintainer 'Chef Software, Inc.'
maintainer_email 'cookbooks@chef.io'
license 'Apache 2.0'
description 'Installs erlang, optionally install GUI tools.'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '3.0.0'
depends 'apt', '>= 1.7.0'
depends 'yum', '~> 3.0'
depends 'yum-epel'
depends 'yum-erlang_solutions'
depends 'build-essential'
recipe 'erlang', 'Installs Erlang via native package, source, or Erlang Solutions package'
recipe 'erlang::package', 'Installs Erlang via native package'
recipe 'erlang::source', 'Installs Erlang via source'
recipe 'erlang::esl', "Installs Erlang from Erlang Solutions' package repositories"
%w( amazon centos debian oracle redhat scientific ubuntu zlinux ).each do |os|
supports os
end
source_url 'https://github.com/chef-cookbooks/erlang' if respond_to?(:source_url)
issues_url 'https://github.com/chef-cookbooks/erlang/issues' if respond_to?(:issues_url)