beecrypt 4.2.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
26de4a2bdf
commit
315afd8bc0
1 changed files with 20 additions and 0 deletions
20
Formula/beecrypt.rb
Normal file
20
Formula/beecrypt.rb
Normal file
|
@ -0,0 +1,20 @@
|
|||
require 'formula'
|
||||
|
||||
class Beecrypt < Formula
|
||||
url 'http://sourceforge.net/projects/beecrypt/files/beecrypt/4.2.1/beecrypt-4.2.1.tar.gz'
|
||||
homepage 'http://beecrypt.sourceforge.net'
|
||||
sha256 '286f1f56080d1a6b1d024003a5fa2158f4ff82cae0c6829d3c476a4b5898c55d'
|
||||
|
||||
depends_on "icu4c"
|
||||
|
||||
def install
|
||||
# Compilation fails if we allow Homebrew to set CFLAGS/CPPFLAGS/CXXFLAGS.
|
||||
ENV.delete "CFLAGS"
|
||||
ENV.delete "CPPFLAGS"
|
||||
ENV.delete "CXXFLAGS"
|
||||
|
||||
system "./configure", "--prefix=#{prefix}", "--disable-openmp", "--without-java", "--without-python"
|
||||
system "make"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue