blob: 7cf0db8cd34eb4abb2bf1e956cc573774558494c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'formula'
class Lensfun < Formula
homepage 'http://lensfun.berlios.de'
head 'svn://svn.berlios.de/lensfun/trunk'
url 'https://downloads.sourceforge.net/project/lensfun.berlios/lensfun-0.2.8.tar.bz2'
sha1 '0e85eb7692620668d27e2303687492ad68c90eb4'
depends_on 'doxygen' => :optional
depends_on 'glib'
depends_on :libpng
depends_on 'pkg-config' => :build
def install
system "./configure", "--prefix=#{prefix}"
system "make", "install"
end
end
|