unshield 1.0
This commit is contained in:
parent
0af14aa5da
commit
f1576c569a
1 changed files with 10 additions and 12 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue