-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ac8bb1d
commit 6b71b6c
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Documentation: https://docs.brew.sh/Formula-Cookbook | ||
# https://rubydoc.brew.sh/Formula | ||
# PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST! | ||
class Templ < Formula | ||
desc "A templating tool that downloads git repositories." | ||
Check failure on line 5 in Formula/templ.rb GitHub Actions / test-bot (ubuntu-22.04)
|
||
homepage "https://github.com/PlayTechnique/templ" | ||
url "https://github.com/PlayTechnique/templ/archive/refs/tags/0.1.0.tar.gz" | ||
sha256 "c01f758adc1d690c4a6fc8a4e1ed56133d89d52fb14c8d359cf1387f8ec57ca0" | ||
license "" | ||
|
||
depends_on "go" => :build | ||
|
||
def install | ||
# ENV.deparallelize # if your formula fails when building in parallel | ||
system "go", "build", *std_go_args(ldflags: "-s -w") | ||
end | ||
|
||
test do | ||
# `test do` will create, run in and delete a temporary directory. | ||
# | ||
# This test will fail and we won't accept that! For Homebrew/homebrew-core | ||
# this will need to be a test that verifies the functionality of the | ||
# software. Run the test with `brew test templ`. Options passed | ||
# to `brew install` such as `--HEAD` also need to be provided to `brew test`. | ||
# | ||
# The installed folder is not in the path, so use the entire path to any | ||
# executables being tested: `system "#{bin}/program", "do", "something"`. | ||
system "false" | ||
end | ||
end | ||