diff options
| author | Brandon Bennett | 2013-06-17 13:23:09 -0600 |
|---|---|---|
| committer | Adam Vandenberg | 2013-06-18 09:24:23 -0700 |
| commit | 828bd5912e7a52edcbf69c2eade57f1e09a2ac17 (patch) | |
| tree | d94ee7fb4f4ebdc7e94967de3d96a1ba1d55a33d /Library | |
| parent | 088424fabca0173703116a2db0527e4344afc537 (diff) | |
| download | homebrew-828bd5912e7a52edcbf69c2eade57f1e09a2ac17.tar.bz2 | |
libslax 0.16.0
Closes #20560.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/libslax.rb | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Library/Formula/libslax.rb b/Library/Formula/libslax.rb index 39546063d..11014449a 100644 --- a/Library/Formula/libslax.rb +++ b/Library/Formula/libslax.rb @@ -1,10 +1,13 @@ require 'formula' class Libslax < Formula - homepage 'https://code.google.com/p/libslax/' - url 'http://libslax.googlecode.com/files/libslax-0.14.8.tar.gz' - sha1 '86447eb486044008aa54bd3f3af491da8dc0fda7' + homepage 'http://www.libslax.org/' + url 'https://github.com/Juniper/libslax/archive/libslax-0.16.0.tar.gz' + sha1 'c89b46387050fe8b201f8a0f1676e504aac1b80e' + head 'https://github.com/Juniper/libslax.git' + + depends_on 'automake' => :build depends_on 'libtool' => :build # Need newer versions of these libraries @@ -15,6 +18,7 @@ class Libslax < Formula end def install + system "sh ./bin/setup.sh" system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make install" |
