aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAndy Jackson2013-07-25 10:26:35 +0100
committerAdam Vandenberg2013-07-25 07:31:37 -0700
commit3715d092ddc98d1fed8c4be9eaa876df07d020a3 (patch)
tree4e622d8df167d241284a0226f07d9df6088290e8 /Library/Formula
parentfa4b9788828c5b901e95ce01d3394b78ba5c1805 (diff)
downloadhomebrew-3715d092ddc98d1fed8c4be9eaa876df07d020a3.tar.bz2
tika 1.4
Closes #21430. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/tika.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/Library/Formula/tika.rb b/Library/Formula/tika.rb
index 743883c31..901931b9d 100644
--- a/Library/Formula/tika.rb
+++ b/Library/Formula/tika.rb
@@ -1,21 +1,21 @@
require 'formula'
class TikaRestServer < Formula
- url 'http://repo1.maven.org/maven2/org/apache/tika/tika-server/1.3/tika-server-1.3.jar'
- sha1 '8d96bc0fa171c48018ebdce62f1204cb79de250b'
+ url 'http://repo1.maven.org/maven2/org/apache/tika/tika-server/1.4/tika-server-1.4.jar'
+ sha1 '52c6a2ca5be920ead267ecce191b1644232244ee'
end
class Tika < Formula
homepage 'http://tika.apache.org/'
- url 'http://www.apache.org/dyn/closer.cgi?path=tika/tika-app-1.3.jar'
- sha1 'fb5786dfe4fa19a651c9f6d9417336127b34ddc2'
+ url 'http://www.apache.org/dyn/closer.cgi?path=tika/tika-app-1.4.jar'
+ sha1 'e91c758149ce9ce799fff184e9bf3aabda394abc'
def install
libexec.install "tika-app-#{version}.jar"
- bin.write_jar_script libexec/"tika-app-1.3.jar", "tika"
+ bin.write_jar_script libexec/"tika-app-1.4.jar", "tika"
TikaRestServer.new.brew do
- libexec.install "tika-server-1.3.jar"
- bin.write_jar_script libexec/"tika-server-1.3.jar", "tika-rest-server"
+ libexec.install "tika-server-1.4.jar"
+ bin.write_jar_script libexec/"tika-server-1.4.jar", "tika-rest-server"
end
end