aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/frei0r.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/frei0r.rb b/Library/Formula/frei0r.rb
new file mode 100644
index 000000000..037b42935
--- /dev/null
+++ b/Library/Formula/frei0r.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Frei0r < Formula
+ homepage 'http://www.piksel.org/frei0r'
+ url 'http://www.piksel.no/frei0r/releases/frei0r-plugins-1.3.tar.gz'
+ sha1 'f6b463440017934d01ac3c8fdf70b93c915e3d08'
+
+ def install
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end