aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorBrandon Bennett2013-07-07 10:50:45 -0600
committerAdam Vandenberg2013-07-11 06:41:33 -0700
commit6c35a96d4e6b57a442afbfecba906195ab60c084 (patch)
tree887b88c35525afd3add107a5176a91f07c01679d /Library/Formula
parent5b461da21bb15c02273ce7fea29fab698fc8eb78 (diff)
downloadhomebrew-6c35a96d4e6b57a442afbfecba906195ab60c084.tar.bz2
juise 0.5.3
Closes #21124. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/juise.rb23
1 files changed, 12 insertions, 11 deletions
diff --git a/Library/Formula/juise.rb b/Library/Formula/juise.rb
index ce03c2ab2..067992880 100644
--- a/Library/Formula/juise.rb
+++ b/Library/Formula/juise.rb
@@ -1,26 +1,27 @@
require 'formula'
class Juise < Formula
- homepage 'http://code.google.com/p/juise/'
- url 'http://juise.googlecode.com/files/juise-0.3.21.tar.gz'
- sha1 '1d58b182ce60edc275f6574bc72c128a799438e0'
+ homepage 'https://github.com/Juniper/juise/wiki'
+ url 'https://github.com/Juniper/juise/releases/0.5.3/3012/juise-0.5.3.tar.gz'
+ sha1 'aacc8414f0ce278bc080ce3b41225a94e3000173'
+ head 'https://github.com/Juniper/juise.git'
+
+ depends_on 'automake' => :build if build.head?
depends_on 'libtool' => :build
depends_on 'libslax'
depends_on 'libssh2'
depends_on 'pcre'
-
- # Need newer versions of these libraries
- if MacOS.version <= :lion
- depends_on 'libxml2'
- depends_on 'libxslt'
- depends_on 'curl'
- end
+ depends_on 'sqlite'
def install
+ # If build from read run script to run autoconf
+ system "sh ./bin/setup.sh" if build.head?
+
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
- "--with-libssh2-prefix=#{HOMEBREW_PREFIX}"
+ "--with-libssh2-prefix=#{HOMEBREW_PREFIX}",
+ "--with-sqlite3-prefix=#{Formula.factory('sqlite').opt_prefix}"
system "make install"
end
end