blob: 11014449ae89e7cde57fd4dd55324e93c0c12b95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
require 'formula'
class Libslax < Formula
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
if MacOS.version <= :lion
depends_on 'libxml2'
depends_on 'libxslt'
depends_on 'curl'
end
def install
system "sh ./bin/setup.sh"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|