diff options
Diffstat (limited to 'homebrew/fossil')
-rw-r--r-- | homebrew/fossil/.beer | 33 | ||||
-rw-r--r-- | homebrew/fossil/.make.sh-auto | 11 | ||||
-rw-r--r-- | homebrew/fossil/_metadata/description | 1 | ||||
-rw-r--r-- | homebrew/fossil/_metadata/homepage | 1 | ||||
-rw-r--r-- | homebrew/fossil/_metadata/name | 1 | ||||
-rw-r--r-- | homebrew/fossil/_metadata/version | 1 | ||||
-rwxr-xr-x | homebrew/fossil/download.sh | 1 |
7 files changed, 49 insertions, 0 deletions
diff --git a/homebrew/fossil/.beer b/homebrew/fossil/.beer new file mode 100644 index 000000000..df9312b54 --- /dev/null +++ b/homebrew/fossil/.beer @@ -0,0 +1,33 @@ +{ + "name": "Fossil", + "description": "Distributed software configuration management", + "url": "https://www.fossil-scm.org/index.html/uv/fossil-src-2.8.tar.gz", + "mirror": null, + "homepage": "https://www.fossil-scm.org/", + "depends": [ + { + "depend": "openssl", + "build-depend": false + } + ], + "resource": [], + "conflicts": [], + "patches": [], + "install": [ + "args = [", + "\"--with-tcl-private-stubs=1\",", + "\"--json\",", + "\"--disable-fusefs\",", + "]", + "if MacOS.sdk_path_if_needed", + "args << \"--with-tcl=#{MacOS.sdk_path}/System/Library/Frameworks/Tcl.framework\"", + "else", + "args << \"--with-tcl-stubs\"", + "end", + "system \"./configure\", *args", + "system \"make\"", + "bin.install \"fossil\"" + ], + "version": "2.8", + "file": "fossil.rb" +}
\ No newline at end of file diff --git a/homebrew/fossil/.make.sh-auto b/homebrew/fossil/.make.sh-auto new file mode 100644 index 000000000..d0ce3b3df --- /dev/null +++ b/homebrew/fossil/.make.sh-auto @@ -0,0 +1,11 @@ +pkg:setup +args = [ +"--with-tcl-private-stubs=1", "--json", "--disable-fusefs", ] +if MacOS.sdk_path_if_needed +args << "--with-tcl=#{MacOS.sdk_path}/System/Library/Frameworks/Tcl.framework" +else +args << "--with-tcl-stubs" +end +pkg:configure *args +make +bin.install "fossil" diff --git a/homebrew/fossil/_metadata/description b/homebrew/fossil/_metadata/description new file mode 100644 index 000000000..678ee4eb0 --- /dev/null +++ b/homebrew/fossil/_metadata/description @@ -0,0 +1 @@ +Distributed software configuration management diff --git a/homebrew/fossil/_metadata/homepage b/homebrew/fossil/_metadata/homepage new file mode 100644 index 000000000..d1001d0de --- /dev/null +++ b/homebrew/fossil/_metadata/homepage @@ -0,0 +1 @@ +https://www.fossil-scm.org/ diff --git a/homebrew/fossil/_metadata/name b/homebrew/fossil/_metadata/name new file mode 100644 index 000000000..036825aa4 --- /dev/null +++ b/homebrew/fossil/_metadata/name @@ -0,0 +1 @@ +Fossil diff --git a/homebrew/fossil/_metadata/version b/homebrew/fossil/_metadata/version new file mode 100644 index 000000000..a4412fa74 --- /dev/null +++ b/homebrew/fossil/_metadata/version @@ -0,0 +1 @@ +2.8 diff --git a/homebrew/fossil/download.sh b/homebrew/fossil/download.sh new file mode 100755 index 000000000..6f31842b4 --- /dev/null +++ b/homebrew/fossil/download.sh @@ -0,0 +1 @@ +wget https://www.fossil-scm.org/index.html/uv/fossil-src-2.8.tar.gz
\ No newline at end of file |