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

class Ondir < Formula
  homepage 'http://swapoff.org/ondir.html'
  head 'https://github.com/alecthomas/ondir.git'
  url 'http://swapoff.org/files/ondir/ondir-0.2.3.tar.gz'
  sha1 '372962799612d925c1edd6eaca774dc971438bbe'

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