blob: 7bd56bfdea1ebd37377e9a42dd733eb5fd1440f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Sam2p < Formula
url 'http://sam2p.googlecode.com/files/sam2p-0.49.tar.gz'
homepage 'http://code.google.com/p/sam2p/'
md5 '72387e3e3897580fb5ae439713e75177'
def install
system "./configure", "--enable-lzw", "--enable-gif",
"--prefix=#{prefix}"
system "make"
bin.install "sam2p"
bin.install "sam2p_pdf_scale.pl"
end
end
|