Skip to content

Instantly share code, notes, and snippets.

@mikezackles
Last active August 29, 2015 14:26
Show Gist options
  • Save mikezackles/39803d5d12b6b55e9af5 to your computer and use it in GitHub Desktop.
Save mikezackles/39803d5d12b6b55e9af5 to your computer and use it in GitHub Desktop.
libdime homebrew package
class Libdime < Formula
desc "The DIME library"
head do
url "https://github.com/lavabit/libdime.git", :branch => "develop"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
end
depends_on "pkg-config" => :build
depends_on "openssl"
def install
system "autoreconf -i"
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
end
end
@mikezackles
Copy link
Author

To install, run:

brew install --HEAD https://gist.githubusercontent.com/mikezackles/39803d5d12b6b55e9af5/raw/fa2bae6fbbff5225b92cc65edea30508b8895845/libdime.rb`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment