Skip to content

Instantly share code, notes, and snippets.

@ArnaudLigny
Created December 3, 2018 14:20
Show Gist options
  • Save ArnaudLigny/87525d74337007d9f9a30395eede9040 to your computer and use it in GitHub Desktop.
Save ArnaudLigny/87525d74337007d9f9a30395eede9040 to your computer and use it in GitHub Desktop.
Cecil Homebrew Formula
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