aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorBrandon Bennett2013-07-10 09:28:12 -0700
committerAdam Vandenberg2013-07-11 06:41:45 -0700
commitb168bbcb05450aa3207926e5ad6ca2e542eda15b (patch)
tree3147f69879c4fa4a31f015cf2c2da12ddbf83d6c /Library/Formula
parent6c35a96d4e6b57a442afbfecba906195ab60c084 (diff)
downloadhomebrew-b168bbcb05450aa3207926e5ad6ca2e542eda15b.tar.bz2
libslax 0.16.10
Also move to github releases vs on-demand tarballs Closes #21125. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/libslax.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/libslax.rb b/Library/Formula/libslax.rb
index 54962c4e6..0772b2ac3 100644
--- a/Library/Formula/libslax.rb
+++ b/Library/Formula/libslax.rb
@@ -2,21 +2,21 @@ require 'formula'
class Libslax < Formula
homepage 'http://www.libslax.org/'
- url 'https://github.com/Juniper/libslax/archive/0.16.9.tar.gz'
- sha1 '96676aed054ad25e3a71b9c383a96ba86222438b'
+ url 'https://github.com/Juniper/libslax/releases/0.16.10/3029/libslax-0.16.10.tar.gz'
+ sha1 '0300a20ecf8cbc6315df3e13df3295024202378c'
head 'https://github.com/Juniper/libslax.git'
- depends_on 'automake' => :build
+ depends_on 'automake' => :build if build.head?
depends_on 'libtool' => :build
-
- # Need newer versions of these libraries
depends_on 'libxml2'
depends_on 'libxslt'
depends_on 'curl' if MacOS.version <= :lion
def install
- system "sh ./bin/setup.sh"
+ # If build from read run script to run autoconf
+ system "sh ./bin/setup.sh" if build.head?
+
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"