mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
14 lines
275 B
Ruby
14 lines
275 B
Ruby
require 'package'
|
|
|
|
class Camp < Package
|
|
description 'Server stack which includes httpd, percona_server and php'
|
|
homepage ''
|
|
version '1.0'
|
|
|
|
is_fake
|
|
|
|
depends_on 'httpd'
|
|
depends_on 'percona_server'
|
|
depends_on 'php' unless File.exists? "#{CREW_PREFIX}/bin/php"
|
|
end
|