aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/popt.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2013-01-27 21:45:32 -0800
committerAdam Vandenberg2013-01-28 21:40:19 -0800
commitaefaae1e7d75637d3d4bfd878ccd59f5a352d7d9 (patch)
treec6788a1beb4e721365965bced4396ac6a18e5fda /Library/Formula/popt.rb
parenta7717773fba27b4441dff54c2b7ca4f05712f1e0 (diff)
downloadhomebrew-aefaae1e7d75637d3d4bfd878ccd59f5a352d7d9.tar.bz2
popt: style nits
Diffstat (limited to 'Library/Formula/popt.rb')
-rw-r--r--Library/Formula/popt.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/Library/Formula/popt.rb b/Library/Formula/popt.rb
index 86f85fecf..8e9ba1440 100644
--- a/Library/Formula/popt.rb
+++ b/Library/Formula/popt.rb
@@ -1,12 +1,13 @@
require 'formula'
class Popt < Formula
- url 'http://rpm5.org/files/popt/popt-1.16.tar.gz'
homepage 'http://rpm5.org'
+ url 'http://rpm5.org/files/popt/popt-1.16.tar.gz'
sha1 'cfe94a15a2404db85858a81ff8de27c8ff3e235e'
def install
- system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
system "make install"
end
end