Commit b761d81d authored by Ed Reel's avatar Ed Reel

Add unshield package

parent 54609ffc
require 'package'
class Unshield < Package
description 'Tool and library to extract CAB files from InstallShield installers.'
homepage 'https://github.com/twogood/unshield'
version '1.4.2'
source_url 'https://github.com/twogood/unshield/archive/1.4.2.tar.gz'
source_sha1 '02935c888b04507f0a14036773539a4f8c20a152'
depends_on 'cmake'
def self.build
system 'cmake .'
system 'make'
end
def self.install
system "mkdir -p #{CREW_DEST_DIR}/usr/local/man/man1"
system "cp man/* #{CREW_DEST_DIR}/usr/local/man/man1"
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment