Created
December 3, 2018 14:20
-
-
Save ArnaudLigny/87525d74337007d9f9a30395eede9040 to your computer and use it in GitHub Desktop.
Cecil Homebrew Formula
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Cecil < Formula | |
desc "Your content driven static site generator" | |
homepage "https://cecil.app" | |
url "https://cecil.app/download/4.0.0/cecil.phar" | |
sha256 "0964d95373a54c9650d8106d7dfc2a1f9b994ea435f735dbf3f48ceea53fba96" | |
depends_on "php" => :test | |
def install | |
bin.install "cecil.phar" => "cecil" | |
end | |
test do | |
assert_match /Cecil, version 4.0.0/, shell_output("#{bin}/cecil --version") | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment