chiark / gitweb /
Merge branch 'master' of gitorious.org:f-droid/fdroidserver
[fdroidserver.git] / buildserver / cookbooks / fdroidbuild-general / recipes / default.rb
1
2 %w{ant ant-contrib autoconf autopoint bison cmake expect libtool libssl1.0.0 libssl-dev maven javacc python git-core mercurial subversion bzr git-svn make perlmagick pkg-config zip ruby rubygems librmagick-ruby}.each do |pkg|
3   package pkg do
4     action :install
5   end
6 end
7
8 if node['kernel']['machine'] == "x86_64"
9   %w{ia32-libs}.each do |pkg|
10     package pkg do
11       action :install
12     end
13   end
14 end
15