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

class Rmtrash < Formula
  homepage 'http://www.nightproductions.net/cli.htm'
  url 'http://www.nightproductions.net/downloads/rmtrash_source.tar.gz'
  sha1 '3e24ca03c2aadcb804681b4790177569ac83a8c6'
  version '0.3.3'

  def install
    system "make LDFLAGS='-framework Foundation -prebind' all"
    man1.install gzip("rmtrash.1")
    bin.install "rmtrash"
  end
end