diff options
| author | Matthew L Daniel | 2010-11-16 23:23:11 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2010-11-19 06:49:45 -0800 |
| commit | b2aff3b268ee5dcbea40f5f7f49807aad8ad33bd (patch) | |
| tree | 7917b90f075590de62c9cc7deabb586a05413cfc /Library/Formula | |
| parent | c888c5212e65629323cf82031288046bdcc11f7e (diff) | |
| download | homebrew-b2aff3b268ee5dcbea40f5f7f49807aad8ad33bd.tar.bz2 | |
Add libungif
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/ungif.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/ungif.rb b/Library/Formula/ungif.rb new file mode 100644 index 000000000..0f5914c1c --- /dev/null +++ b/Library/Formula/ungif.rb @@ -0,0 +1,14 @@ +require 'formula' + +class Ungif < Formula + url 'http://sourceforge.net/projects/giflib/files/libungif%204.x/libungif-4.1.4/libungif-4.1.4.tar.bz2' + md5 '76865bc1bed90ecb5992a1edcc4d6c15' + homepage 'http://sourceforge.net/projects/giflib/' + + def install + ENV.j1 + system "./configure", "--prefix=#{prefix}" + system "make all" + system "make install" + end +end |
