-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathmetadata.rb
23 lines (19 loc) · 903 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
name 'android-sdk'
maintainer 'Gilles Cornu'
maintainer_email '[email protected]'
issues_url 'https://github.com/gildegoma/chef-android-sdk/issues' if respond_to?(:issues_url)
source_url 'https://github.com/gildegoma/chef-android-sdk' if respond_to?(:source_url)
license 'Apache 2.0'
description 'Installs Google Android SDK'
version '0.2.2'
%w(java ark).each do |dep|
depends dep
end
# TODO: maybe put maven into depends section
recommends 'maven' # Maven 3.1.1+ is required by android-sdk::maven-rescue recipe
supports 'ubuntu', '>= 12.04'
supports 'centos', '>= 6.6'
# Support for more platforms is on the road (e.g. Debian, CentOS,...).
# Please watch or help on https://github.com/gildegoma/chef-android-sdk/issues/5
recipe 'android-sdk::default', 'Install and update Google Android SDK'
recipe 'android-sdk::maven_rescue', 'Install missing dependencies with Maven Android SDK Deployer'