blob: eda9e4ef115931ada63482a80d87c66cf2233aeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'formula'
class Calcurse < Formula
homepage 'http://calcurse.org/'
url 'http://calcurse.org/files/calcurse-3.1.4.tar.gz'
sha1 '5cf0cc458d6508d38aa57a12170499449f09bfd2'
depends_on 'gettext'
# Patch sent upstream: https://github.com/cryptocrack/calcurse/pull/1
def patches
"https://github.com/jacknagel/calcurse/commit/86dd23f87bcbb32a69f5f0391439238d4e389d77.patch"
end
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make"
system "make install"
end
end
|