aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/sxiv.rb
blob: eb41bd719cdb8b8081011708b48bf269bc2298f3 (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 Sxiv < Formula
  homepage "https://github.com/muennich/sxiv"
  url "https://github.com/muennich/sxiv/archive/v1.2.tar.gz"
  sha1 "69cacabdd60316edbf3eee076d8057df7f7be0ed"

  head "https://github.com/muennich/sxiv.git"

  depends_on :x11
  depends_on "imlib2"
  depends_on "giflib"

  def install
    system "make", "config.h"
    system "make", "PREFIX=#{prefix}", "install"
  end

  test do
    system "#{bin}/sxiv", "-v"
  end
end