aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorcodingisacopingstrategy2010-12-26 22:51:40 +0100
committerMike McQuaid2010-12-27 21:57:23 +0000
commit4e54261603ae32a71c60dacf65f4544aff30bf23 (patch)
tree40b49a0ff4a1f1ba53b63b2d3391453f258805c0 /Library
parenta4e5dd50ced600fd32b4b31e85aad2af8014b2e1 (diff)
downloadhomebrew-4e54261603ae32a71c60dacf65f4544aff30bf23.tar.bz2
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>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/liblqr.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/liblqr.rb b/Library/Formula/liblqr.rb
new file mode 100644
index 000000000..13f36e5aa
--- /dev/null
+++ b/Library/Formula/liblqr.rb
@@ -0,0 +1,16 @@
+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