forked from sous-chefs/erlang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.rb
25 lines (21 loc) · 988 Bytes
/
metadata.rb
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 '[email protected]'
license 'Apache-2.0'
description 'Installs erlang, optionally install GUI tools.'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '5.0.0'
depends 'compat_resource'
depends 'yum-epel'
depends 'yum-erlang_solutions', '>= 1.0.3'
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'
issues_url 'https://github.com/chef-cookbooks/erlang/issues'
chef_version '>= 12.1'