aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMike McQuaid2013-01-27 22:34:53 +0000
committerMike McQuaid2013-01-30 21:29:19 -0800
commit063d5e5b7815e2b14dd11a7bc477e37613ad4801 (patch)
tree13121c0fb483089f7eb46ecd20e78e2e272bcfd5 /Library/Formula
parent6555c0a2605a5db184e245f6fb7fd494dfb76ec6 (diff)
downloadhomebrew-063d5e5b7815e2b14dd11a7bc477e37613ad4801.tar.bz2
jpeg: support version format.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/jpeg.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/jpeg.rb b/Library/Formula/jpeg.rb
index f226baf8e..f6dcbe834 100644
--- a/Library/Formula/jpeg.rb
+++ b/Library/Formula/jpeg.rb
@@ -3,7 +3,6 @@ require 'formula'
class Jpeg < Formula
homepage 'http://www.ijg.org'
url 'http://www.ijg.org/files/jpegsrc.v8d.tar.gz'
- version '8d'
sha1 'f080b2fffc7581f7d19b968092ba9ebc234556ff'
bottle do
@@ -13,7 +12,8 @@ class Jpeg < Formula
end
def install
- ENV.universal_binary # Builds universal libs. Default is static & shared.
+ ENV.universal_binary
+ # Builds static and shared libraries.
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end