diff options
| -rw-r--r-- | Library/Formula/unshield.rb | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/Library/Formula/unshield.rb b/Library/Formula/unshield.rb index 4450bacfa..97cc0247e 100644 --- a/Library/Formula/unshield.rb +++ b/Library/Formula/unshield.rb @@ -1,21 +1,19 @@ -require 'formula' +require "formula" class Unshield < Formula - homepage 'http://www.synce.org/oldwiki/index.php/Unshield' - url 'https://downloads.sourceforge.net/project/synce/Unshield/0.6/unshield-0.6.tar.gz' - sha1 '3e1197116145405f786709608a5a636a19f4f3e1' - - # Add support for new Installshield versions. See: - # http://sourceforge.net/tracker/?func=detail&aid=3163039&group_id=30550&atid=399603 - patch do - url "http://patch-tracker.debian.org/patch/series/dl/unshield/0.6-3/new_installshield_format.patch" - sha1 "1d35b9a1d211a42d1031b506c3a759d9585031f2" - end + homepage "https://github.com/twogood/unshield" + url "https://github.com/twogood/unshield/archive/1.0.tar.gz" + sha1 "b9e09a23d7172dc43c914b764470aec182e4f468" + depends_on "autoconf" => :build + depends_on "automake" => :build + depends_on "libtool" => :build def install + system "./bootstrap" system "./configure", "--disable-dependency-tracking", + "--disable-silent-rules", "--prefix=#{prefix}" - system "make install" + system "make", "install" end end |
