aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/minised.rb
blob: 74bc81052be8be7ee0bcb5e398a8f1ccbdac7f01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Minised < Formula
  homepage 'http://www.exactcode.de/site/open_source/minised/'
  url 'http://dl.exactcode.de/oss/minised/minised-1.13.tar.gz'
  sha1 '3b718ce86c48047d1f5e8efcee8dd69a7a9dbac5'

  def install
    system "make" # separate steps or it won't build the binary
    system "make", "DESTDIR=#{prefix}", "PREFIX=", "install"
  end
end