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

class Unshield < Formula
  url 'http://downloads.sourceforge.net/project/synce/Unshield/0.6/unshield-0.6.tar.gz'
  homepage 'http://www.synce.org/oldwiki/index.php/Unshield'
  md5 '31a829192a255160d1f71cda4c865c9c'

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
    system "make install"
  end
end