blob: aceee5b16d435011ab93e85f66c4a8f47722abad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require 'formula'
class Libslax < Formula
homepage 'https://code.google.com/p/libslax/'
url 'https://libslax.googlecode.com/files/libslax-0.11.29.tar.gz'
sha1 'a1895a5cfd7af09d0d4066823157a4cbf5409720'
depends_on 'libtool' => :build
# Need newer versions of these libraries
if MacOS.version <= :lion
depends_on 'libxml2'
depends_on 'libxslt'
depends_on 'curl'
end
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|