blob: 05cd8f2e82c7b059501148edbf1d46f8e68a3f75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require "formula"
class Pdfcrack < Formula
homepage "http://pdfcrack.sourceforge.net/"
url "https://downloads.sourceforge.net/project/pdfcrack/pdfcrack/pdfcrack-0.14/pdfcrack-0.14.tar.gz"
sha1 "15d74431a06430b910c8e9ad2b1f5b8635c94181"
def install
system "make all"
bin.install "pdfcrack"
end
end
|