diff options
| author | royhodgman | 2011-03-01 01:34:41 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2011-04-13 12:52:45 -0700 |
| commit | e6d2e0f82ce2b2f6314769bb63de9fdf88fb7772 (patch) | |
| tree | 8543b3dc29bd805a3499136650a49ee3816cd7d3 | |
| parent | 79e87d8001c3ece80720a1e6a4bfa6c9dba4ae28 (diff) | |
| download | homebrew-e6d2e0f82ce2b2f6314769bb63de9fdf88fb7772.tar.bz2 | |
libpuzzle 0.11
The Puzzle library is designed to quickly find visually similar images
(GIF, PNG, JPG), even if they have been resized, recompressed, recolored
or slightly modified.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/libpuzzle.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/libpuzzle.rb b/Library/Formula/libpuzzle.rb new file mode 100644 index 000000000..3bd900919 --- /dev/null +++ b/Library/Formula/libpuzzle.rb @@ -0,0 +1,15 @@ +require 'formula' + +class Libpuzzle < Formula + url 'http://download.pureftpd.org/pub/pure-ftpd/misc/libpuzzle/releases/libpuzzle-0.11.tar.bz2' + homepage 'http://libpuzzle.pureftpd.org/project/libpuzzle' + sha1 'a3352c67fd61eab33d5a03c214805b18723d719e' + + depends_on 'gd' + + def install + system "./configure", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make install" + end +end |
