1
+ brews :
2
+ -
3
+ # Name template of the recipe
4
+ # Default to project name
5
+ name : magento-cli
6
+
7
+ # IDs of the archives to use.
8
+ # Defaults to all.
9
+ # ids:
10
+ # - foo
11
+ # - bar
12
+
13
+ # GOARM to specify which 32-bit arm version to use if there are multiple versions
14
+ # from the build section. Brew formulas support atm only one 32-bit version.
15
+ # Default is 6 for all artifacts or each id if there a multiple versions.
16
+ goarm : 6
17
+
18
+ # NOTE: make sure the url_template, the token and given repo (github or gitlab) owner and name are from the
19
+ # same kind. We will probably unify this in the next major version like it is done with scoop.
20
+
21
+ # GitHub/GitLab repository to push the formula to
22
+ # Gitea is not supported yet, but the support coming
23
+ tap :
24
+ owner : superterran
25
+ name : homebrew-magento-cli
26
+
27
+ # Template for the url which is determined by the given Token (github or gitlab)
28
+ # Default for github is "https://github.com/<repo_owner>/<repo_name>/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
29
+ # Default for gitlab is "https://gitlab.com/<repo_owner>/<repo_name>/-/releases/{{ .Tag }}/downloads/{{ .ArtifactName }}"
30
+ # Default for gitea is "https://gitea.com/<repo_owner>/<repo_name>/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
31
+ url_template : " https://github.com/superterran/magento-cli/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
32
+
33
+ # Allows you to set a custom download strategy. Note that you'll need
34
+ # to implement the strategy and add it to your tap repository.
35
+ # Example: https://docs.brew.sh/Formula-Cookbook#specifying-the-download-strategy-explicitly
36
+ # Default is empty.
37
+ # download_strategy: CurlDownloadStrategy.
38
+
39
+ # Allows you to add a custom require_relative at the top of the formula template
40
+ # Default is empty
41
+ # custom_require: custom_download_strategy
42
+
43
+ # Git author used to commit to the repository.
44
+ # Defaults are shown.
45
+ commit_author :
46
+ name : goreleaserbot
47
+
48
+
49
+ # Folder inside the repository to put the formula.
50
+ # Default is the root folder.
51
+ folder : Formula
52
+
53
+ # Caveats for the user of your binary.
54
+ # Default is empty.
55
+ caveats : " How to use this binary"
56
+
57
+ # Your app's homepage.
58
+ # Default is empty.
59
+ homepage : " https://superterran.net/magento-cli/"
60
+
61
+ # Your app's description.
62
+ # Default is empty.
63
+ description : " tool for managing magento and serving local versions"
64
+
65
+ # SPDX identifier of your app's license.
66
+ # Default is empty.
67
+ license : " MIT"
68
+
69
+ # Setting this will prevent goreleaser to actually try to commit the updated
70
+ # formula - instead, the formula file will be stored on the dist folder only,
71
+ # leaving the responsibility of publishing it to the user.
72
+ # If set to auto, the release will not be uploaded to the homebrew tap
73
+ # in case there is an indicator for prerelease in the tag e.g. v1.0.0-rc1
74
+ # Default is false.
75
+ # skip_upload: true
76
+
77
+ # Custom block for brew.
78
+ # Can be used to specify alternate downloads for devel or head releases.
79
+ # Default is empty.
80
+ # custom_block: |
81
+ # head "https://github.com/some/package.git"
82
+ # ...
83
+
84
+ # Packages your package depends on.
85
+ dependencies :
86
+ - name : docker
87
+ type : optional
88
+ - name : docker-compose
89
+ type : optional
90
+ - name : git
91
+ type : optional
92
+
93
+ # Packages that conflict with your package.
94
+ # conflicts:
95
+ # - svn
96
+ # - bash
97
+
98
+ # Specify for packages that run as a service.
99
+ # Default is empty.
100
+ # plist: |
101
+ # <?xml version="1.0" encoding="UTF-8"?>
102
+ # ...
103
+
104
+ # So you can `brew test` your formula.
105
+ # Default is empty.
106
+ test : |
107
+ system "#{bin}/magento -h"
108
+
109
+ # Custom install script for brew.
110
+ # Default is 'bin.install "program"'.
111
+ install : |
112
+ bin.install "magento"
113
+
114
+ # Custom post_install script for brew.
115
+ # Could be used to do any additional work after the "install" script
116
+ # Default is empty.
117
+ # post_install: |
118
+ # etc.install "app-config.conf"
119
+ # ...
0 commit comments