mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
16 lines
334 B
Ruby
16 lines
334 B
Ruby
require 'package'
|
|
|
|
class Snap < Package
|
|
description 'Server stack which includes sqlite, nginx and php. Not to be confused with snapd.'
|
|
homepage ''
|
|
version '1.0'
|
|
license 'GPL-3+'
|
|
compatibility 'all'
|
|
|
|
is_fake
|
|
|
|
depends_on 'nginx'
|
|
depends_on 'sqlite'
|
|
depends_on 'php74' unless File.exists? "#{CREW_PREFIX}/bin/php"
|
|
end
|