diff options
| author | Justin Clift | 2011-06-15 14:46:51 +1000 |
|---|---|---|
| committer | Adam Vandenberg | 2011-06-15 07:55:38 -0700 |
| commit | dcdfcc31d9a8c22a04cc7080cd1cf737d9c2d048 (patch) | |
| tree | 50c8cfcdfd5fe0c8dafd239336099882d175623b /Library/Formula | |
| parent | 1024072609aa3b36cc5707db8d5d0128e56b08da (diff) | |
| download | homebrew-dcdfcc31d9a8c22a04cc7080cd1cf737d9c2d048.tar.bz2 | |
beecrypt 4.2.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/beecrypt.rb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Library/Formula/beecrypt.rb b/Library/Formula/beecrypt.rb new file mode 100644 index 000000000..aed07b86d --- /dev/null +++ b/Library/Formula/beecrypt.rb @@ -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 |
