mirror of
https://github.com/servo/servo.git
synced 2025-06-20 15:18:58 +01:00
21 lines
561 B
Ruby
21 lines
561 B
Ruby
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
class ServoBin < Formula
|
|
desc "Servo, the Parallel Browser Engine Project (binary version)"
|
|
homepage "https://servo.org"
|
|
url "PACKAGEURL"
|
|
version "VERSION"
|
|
sha256 "SHA"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
prefix.install "bin", "libexec", "resources"
|
|
end
|
|
|
|
test do
|
|
system bin/"servo", "-o", "/dev/null", "-x", "http://example.com"
|
|
end
|
|
end
|