diff options
| author | Michiaki Ariga | 2014-07-03 08:08:33 +0900 |
|---|---|---|
| committer | Jack Nagel | 2014-07-11 14:23:21 -0500 |
| commit | 9acd4c5bd9b39e5f59a4f1a1eb68c23df5ad8885 (patch) | |
| tree | 08bde733b12a90f16b07953f29b886baaef061d1 /Library/Formula | |
| parent | 4a54120e3e6600c93546b1bf81c3702cdfe8d35c (diff) | |
| download | homebrew-9acd4c5bd9b39e5f59a4f1a1eb68c23df5ad8885.tar.bz2 | |
kytea: add HEAD
Closes #30623.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/kytea.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Library/Formula/kytea.rb b/Library/Formula/kytea.rb index 87c44d58a..8ec249d01 100644 --- a/Library/Formula/kytea.rb +++ b/Library/Formula/kytea.rb @@ -4,6 +4,12 @@ class Kytea < Formula homepage 'http://www.phontron.com/kytea/' url 'http://www.phontron.com/kytea/download/kytea-0.4.6.tar.gz' sha1 '2fb22c64a7babff26d95874877d83a9ef1f09617' + head do + url 'https://github.com/neubig/kytea.git', :branch => 'master' + depends_on 'autoconf' => :build + depends_on 'automake' => :build + depends_on 'libtool' => :build + end # Upstream patch to fix compilation on OS X patch :p1 do @@ -12,6 +18,9 @@ class Kytea < Formula end def install + if build.head? + system "autoreconf", "-i" + end system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make install" |
