blob: 5fda3483b1108e2b07e82d63d59e1e9134b0b378 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
require 'formula'
class Isync < Formula
homepage 'http://isync.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/isync/isync/1.0.5/isync-1.0.5.tar.gz'
sha1 '9d19cde13b644d6e394f06d292b60503396d0500'
head 'git://isync.git.sourceforge.net/gitroot/isync/isync'
depends_on 'berkeley-db'
if build.head?
depends_on :autoconf
depends_on :automake
end
def install
system "touch", "ChangeLog" if build.head?
system "./autogen.sh" if build.head?
system './configure', "--prefix=#{prefix}", '--disable-dependency-tracking'
system "make install"
end
end
|