diff options
| author | David Whitmarsh | 2012-11-13 17:23:30 -0600 |
|---|---|---|
| committer | Adam Vandenberg | 2013-02-03 12:43:19 -0800 |
| commit | 36912ab9d398df8a45873fa411696df096a2effd (patch) | |
| tree | 49aabb8af5d115b803959cfc53991ace1230ca44 | |
| parent | 513fd584b2f41de40070df0892030c25ca42deed (diff) | |
| download | homebrew-36912ab9d398df8a45873fa411696df096a2effd.tar.bz2 | |
qiv 2.2.4
Closes #16042.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/qiv.rb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Library/Formula/qiv.rb b/Library/Formula/qiv.rb new file mode 100644 index 000000000..9f0d144b0 --- /dev/null +++ b/Library/Formula/qiv.rb @@ -0,0 +1,24 @@ +require 'formula' + +class Qiv < Formula + homepage 'http://spiegl.de/qiv/' + url 'http://spiegl.de/qiv/download/qiv-2.2.4.tgz' + sha1 '650052cb72820701300b2bfeb09b966625ee3dba' + + head 'http://bitbucket.org/ciberandy/qiv/', :using => :hg + + depends_on 'pkg-config' => :build + depends_on 'gtk+' + depends_on 'imlib2' + depends_on 'libmagic' + + def install + system "make", 'STATUSBAR_FONT="Monaco"', "CC=#{ENV.cc}" + bin.install "qiv" + man1.install "qiv.1" + end + + def test + system "#{bin}/qiv" + end +end |
