homebrew-core/Formula/liblqr.rb
codingisacopingstrategy 0cb0b18449 New formula for Liquid Rescale Library
Liblqr is a free, open source implementation of the seam-carving algorithm
described by Shai Avidan and Ariel Shamir. It is the basis of the Gimp liquid
rescale plugin and ImageMagick’s --liquid-rescale option.

http://liblqr.wikidot.com/

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2010-12-27 21:57:23 +00:00

16 lines
405 B
Ruby

require 'formula'
class Liblqr <Formula
url 'http://liblqr.wikidot.com/local--files/en:download-page/liblqr-1-0.4.1.tar.bz2'
homepage 'http://liblqr.wikidot.com/'
md5 '0e24ed3c9fcdcb111062640764d7b87a'
version '0.4.1'
depends_on 'glib'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end