aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2014-01-04 13:05:44 +0000
committerMike McQuaid2014-01-04 13:19:22 +0000
commitc4739e1982352af80d6329cbd5792544acc4e884 (patch)
treee55f8a1cf818073f5867be0b4a841a00dd0c1bd8 /Library
parent0da0106c88edd305a05c1d253d6a400f8a10a1fd (diff)
downloadhomebrew-c4739e1982352af80d6329cbd5792544acc4e884.tar.bz2
gammu: cleanup python usage.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/gammu.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/Library/Formula/gammu.rb b/Library/Formula/gammu.rb
index a7f5a4448..f69539ae1 100644
--- a/Library/Formula/gammu.rb
+++ b/Library/Formula/gammu.rb
@@ -8,7 +8,6 @@ class Gammu < Formula
depends_on 'cmake' => :build
depends_on 'glib' => :recommended
depends_on 'gettext' => :optional
- depends_on :python => :recommended
def patches
# Fixes issue https://github.com/gammu/gammu/issues/13
@@ -23,15 +22,6 @@ class Gammu < Formula
system 'cmake', *args
system 'make'
system 'make install'
- python do
- chdir 'python' do
- system "#{python.binary}", "setup.py",
- "build_ext",
- "--gammu-libs=#{lib}",
- "--gammu-incs=#{include}/gammu",
- "install"
- end
- end
end
end