Files
chromebrew/packages/camp.rb
supechicken 944607d5ac Change deprecated File.exists?/Dir.exists? to File.exist?/Dir.exist? (#6893)
* Change `File.exists?` to `File.exist?`

* Change `Dir.exists?` to `Dir.exist?`
2022-03-21 13:24:13 -04:00

16 lines
317 B
Ruby

require 'package'
class Camp < Package
description 'Server stack which includes httpd, percona_server and php'
homepage ''
version '1.0'
license 'GPL-3+'
compatibility 'all'
is_fake
depends_on 'httpd'
depends_on 'percona_server'
depends_on 'php74' unless File.exist? "#{CREW_PREFIX}/bin/php"
end