diff options
| author | Norbert Wojtowicz | 2011-09-02 09:57:15 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2012-02-04 16:54:30 -0800 |
| commit | d831fd09a973b4ae6cf8db7575009e252dd83d7f (patch) | |
| tree | 18d9238792c9f7f8a171cf852774f5737c17496d /Library/Formula | |
| parent | f590bad787816779f71320f631a5fe035cc8c40b (diff) | |
| download | homebrew-d831fd09a973b4ae6cf8db7575009e252dd83d7f.tar.bz2 | |
sam2p 0.49
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/sam2p.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/sam2p.rb b/Library/Formula/sam2p.rb new file mode 100644 index 000000000..7bd56bfde --- /dev/null +++ b/Library/Formula/sam2p.rb @@ -0,0 +1,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 |
