diff options
| author | Guy Rozendorn | 2013-10-29 18:52:24 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2013-11-04 20:04:18 -0800 |
| commit | 8d7e5764c365cb73b6d9b08a47a9bc3aca0e97b0 (patch) | |
| tree | b8a6fa096f3ffa8b333ca1975c6fe9b9694837e6 /Library | |
| parent | ab634b340a470f3b49f5b0069c4023bbad211a28 (diff) | |
| download | homebrew-8d7e5764c365cb73b6d9b08a47a9bc3aca0e97b0.tar.bz2 | |
libestr 0.1.8
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/libestr.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/libestr.rb b/Library/Formula/libestr.rb new file mode 100644 index 000000000..c0e1d809a --- /dev/null +++ b/Library/Formula/libestr.rb @@ -0,0 +1,18 @@ +require 'formula' + +class Libestr < Formula + homepage 'http://libestr.adiscon.com' + url 'http://libestr.adiscon.com/files/download/libestr-0.1.8.tar.gz' + sha256 'ce18565af57adc219799fe1659baaa70f58f169795882d770a7a2fe8ca8a6615' + + depends_on 'pkg-config' => :build + + option :universal + + def install + ENV.universal_binary if build.universal? + system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" + system "make" + system "make install" + end +end |
