9549dce7e1
Closes Homebrew/homebrew#31368. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
38 lines
1,004 B
Ruby
38 lines
1,004 B
Ruby
require 'formula'
|
|
|
|
class Libslax < Formula
|
|
homepage 'http://www.libslax.org/'
|
|
url 'https://github.com/Juniper/libslax/releases/download/0.18.1/libslax-0.18.1.tar.gz'
|
|
sha1 '308abc330b0f87a0774992c50d141399c13983fc'
|
|
|
|
bottle do
|
|
sha1 "2f9c5d81cf559ae7967bc664454ceec96a590659" => :mavericks
|
|
sha1 "812a6df66e465794d817a8942dfb5bf107be19d7" => :mountain_lion
|
|
sha1 "db00bdf5d998d64ba0a5805208866804814ccc87" => :lion
|
|
end
|
|
|
|
head do
|
|
url 'https://github.com/Juniper/libslax.git'
|
|
|
|
depends_on 'autoconf' => :build
|
|
depends_on 'automake' => :build
|
|
end
|
|
|
|
depends_on 'libtool' => :build
|
|
|
|
if MacOS.version <= :mountain_lion
|
|
depends_on 'libxml2'
|
|
depends_on 'libxslt'
|
|
end
|
|
|
|
depends_on 'curl' if MacOS.version <= :lion
|
|
|
|
def install
|
|
system "sh", "./bin/setup.sh" if build.head?
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--enable-libedit"
|
|
system "make install"
|
|
end
|
|
end
|