2011-02-11 20:33:36 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Giblib < Formula
|
2011-02-11 20:33:36 +00:00
|
|
|
homepage 'http://freshmeat.net/projects/giblib'
|
2013-01-28 02:43:46 +00:00
|
|
|
url 'http://linuxbrit.co.uk/downloads/giblib-1.2.4.tar.gz'
|
2014-07-03 10:58:13 +00:00
|
|
|
mirror 'http://www.mirrorservice.org/sites/distfiles.macports.org/giblib/giblib-1.2.4.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '342e6f7882c67d2277e1765299e1be5078329ab0'
|
2011-02-11 20:33:36 +00:00
|
|
|
|
2014-07-03 12:32:21 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha1 "faa1b6df15695d6e2122df29fa332733aba2d954" => :mavericks
|
|
|
|
sha1 "6c95c35b66fec113ccc39e9fadfd5bf6ba421a5a" => :mountain_lion
|
|
|
|
sha1 "00a28fdd58b727141b6b5b2b8856d805e027a01c" => :lion
|
|
|
|
end
|
|
|
|
|
2013-01-28 02:43:46 +00:00
|
|
|
depends_on :x11
|
2012-10-13 08:10:55 +00:00
|
|
|
depends_on 'imlib2' => :build
|
2011-02-11 20:33:36 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
2012-09-02 07:58:43 +00:00
|
|
|
|
2014-02-23 21:31:41 +00:00
|
|
|
test do
|
2012-09-02 07:58:43 +00:00
|
|
|
system "#{bin}/giblib-config", "--version"
|
|
|
|
end
|
2011-02-11 20:33:36 +00:00
|
|
|
end
|