aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libextractor.rb
blob: bf531a8360d6a48777cb0bac18e01e66aa41239d (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 Libextractor < Formula
  homepage 'http://www.gnu.org/software/libextractor/'
  url 'http://ftpmirror.gnu.org/libextractor/libextractor-1.0.1.tar.gz'
  mirror 'http://ftp.gnu.org/gnu/libextractor/libextractor-1.0.1.tar.gz'
  sha1 '244eb3e16dadedea9dc827fb91cb309e2baa8637'

  depends_on 'pkg-config' => :build

  def install
    ENV.deparallelize
    system "./configure", "--disable-debug",
                          "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end

  def test
    system "#{bin}/extract", "-v"
  end
end