audit fixes: E 02: elementary - emscripten
Closes Homebrew/homebrew#45137. Signed-off-by: Andrew Janke <andrew@apjanke.net>
This commit is contained in:
parent
a90481be6c
commit
f801a21305
4 changed files with 9 additions and 8 deletions
|
@ -1,5 +1,5 @@
|
|||
class Elementary < Formula
|
||||
desc "Widgets and high level abstractions from the Enlightenment window manager"
|
||||
desc "Widgets and abstractions from the Enlightenment window manager"
|
||||
homepage "https://www.enlightenment.org"
|
||||
url "https://download.enlightenment.org/rel/libs/elementary/elementary-1.14.0.tar.gz"
|
||||
sha256 "aa06ca1b332b3cd29ffd136c1f10edf08a06906b3532785ce7e390c1cad6090e"
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
class ElixirBuild < Formula
|
||||
desc "Elixir version of ruby-build"
|
||||
homepage "https://github.com/mururu/elixir-build"
|
||||
head "https://github.com/mururu/elixir-build.git"
|
||||
url "https://github.com/mururu/elixir-build/archive/v20141001.tar.gz"
|
||||
sha256 "825637780a580b7ebe8c5265a43d37ceff9f3876e771aa2f824079e504ad7347"
|
||||
head "https://github.com/mururu/elixir-build.git"
|
||||
|
||||
conflicts_with "narwhal", :because => "both install `json` binaries"
|
||||
|
||||
|
|
|
@ -1,20 +1,20 @@
|
|||
class EmacsClangCompleteAsync < Formula
|
||||
desc "Emacs plugin using libclang to complete C and C++ code"
|
||||
desc "Emacs plugin using libclang to complete C/C++ code"
|
||||
homepage "https://github.com/Golevka/emacs-clang-complete-async"
|
||||
url "https://github.com/Golevka/emacs-clang-complete-async/archive/v0.5.tar.gz"
|
||||
sha256 "151a81ae8dd9181116e564abafdef8e81d1e0085a1e85e81158d722a14f55c76"
|
||||
|
||||
head "https://github.com/Golevka/emacs-clang-complete-async.git"
|
||||
|
||||
option "with-elisp", "Include Emacs lisp package"
|
||||
|
||||
depends_on "llvm" => "with-clang"
|
||||
|
||||
stable do
|
||||
# https://github.com/Golevka/emacs-clang-complete-async/issues/65
|
||||
patch :DATA
|
||||
end
|
||||
|
||||
option "with-elisp", "Include Emacs lisp package"
|
||||
|
||||
depends_on "llvm" => "with-clang"
|
||||
|
||||
# https://github.com/Golevka/emacs-clang-complete-async/pull/59
|
||||
patch do
|
||||
url "https://github.com/yocchi/emacs-clang-complete-async/commit/5ce197b15d7b8c9abfc862596bf8d902116c9efe.diff"
|
||||
|
|
|
@ -57,7 +57,8 @@ class Emacs < Formula
|
|||
def install
|
||||
args = ["--prefix=#{prefix}",
|
||||
"--enable-locallisppath=#{HOMEBREW_PREFIX}/share/emacs/site-lisp",
|
||||
"--infodir=#{info}/emacs",]
|
||||
"--infodir=#{info}/emacs",
|
||||
]
|
||||
|
||||
args << "--with-file-notification=gfile" if build.with? "glib"
|
||||
|
||||
|
|
Loading…
Reference in a new issue