blob: b7ce151c605a50d075af4022c421e95405564082 (
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
27
28
|
require 'formula'
class Libiscsi < Formula
homepage 'https://github.com/sahlberg/libiscsi'
url 'https://sites.google.com/site/libiscsitarballs/libiscsitarballs/libiscsi-1.10.0.tar.gz'
sha1 'b65de46e9a688078211c1ef8f8a5af2a828d71a6'
head 'https://github.com/sahlberg/libiscsi.git'
option 'with-noinst', 'Install the noinst binaries (e.g. iscsi-test-cu)'
depends_on 'cunit' if build.with? 'noinst'
depends_on 'popt'
depends_on :autoconf
depends_on :automake
depends_on :libtool
def install
if build.with? 'noinst'
# Install the noinst binaries
inreplace 'Makefile.am', 'noinst_PROGRAMS +=', 'bin_PROGRAMS +='
end
system "./autogen.sh"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|