mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
16 lines
317 B
Ruby
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
|