Skip to content

Commit

Permalink
Fix minor formula issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dholm committed Oct 4, 2015
1 parent 5dde9b0 commit 5d7678d
Show file tree
Hide file tree
Showing 42 changed files with 43 additions and 107 deletions.
4 changes: 1 addition & 3 deletions gr-air-modes.rb
@@ -1,5 +1,3 @@
require "formula"

class GrAirModes < Formula
homepage "https://github.com/bistromath/gr-air-modes"
head "https://github.com/bistromath/gr-air-modes.git"
Expand All @@ -22,7 +20,7 @@ def install
] + std_cmake_args

system "cmake", "..", *args
system "make install"
system "make", "install"
end
end
end
4 changes: 1 addition & 3 deletions gr-ais.rb
@@ -1,5 +1,3 @@
require "formula"

class GrAis < Formula
homepage "https://github.com/bistromath/gr-ais"
head "https://github.com/bistromath/gr-ais.git"
Expand All @@ -22,7 +20,7 @@ def install
] + std_cmake_args

system "cmake", "..", *args
system "make install"
system "make", "install"
end
end
end
4 changes: 1 addition & 3 deletions gr-baz.rb
@@ -1,5 +1,3 @@
require "formula"

class GrBaz < Formula
homepage "http://wiki.spench.net/wiki/Gr-baz"
head "https://github.com/balint256/gr-baz.git"
Expand All @@ -19,7 +17,7 @@ def install
] + std_cmake_args

system "cmake", "..", *args
system "make install"
system "make", "install"
end
end
end
2 changes: 1 addition & 1 deletion gr-cdma.rb
Expand Up @@ -21,7 +21,7 @@ def install
] + std_cmake_args

system "cmake", "..", *args
system "make install"
system "make", "install"
end
end
end
6 changes: 2 additions & 4 deletions gr-display.rb
@@ -1,5 +1,3 @@
require "formula"

class GrDisplay < Formula
homepage "https://github.com/dl1ksv/gr-display"
head "https://github.com/dl1ksv/gr-display.git"
Expand All @@ -9,7 +7,7 @@ class GrDisplay < Formula
depends_on "gnuradio"
depends_on "boost"
depends_on "cppunit"
depends_on "qt4"
depends_on "qt"
depends_on "pyqt"

def install
Expand All @@ -21,7 +19,7 @@ def install
] + std_cmake_args

system "cmake", "..", *args
system "make install"
system "make", "install"
end
end
end
2 changes: 1 addition & 1 deletion gr-drm.rb
Expand Up @@ -22,7 +22,7 @@ def install
] + std_cmake_args

system "cmake", "../gr-drm", *args
system "make install"
system "make", "install"
end
end
end
2 changes: 1 addition & 1 deletion gr-dsd.rb
Expand Up @@ -22,7 +22,7 @@ def install
] + std_cmake_args

system "cmake", "..", *args
system "make install"
system "make", "install"
end
end
end
Expand Down
4 changes: 1 addition & 3 deletions gr-dvbs2.rb
@@ -1,5 +1,3 @@
require "formula"

class GrDvbs2 < Formula
homepage "https://github.com/drmpeg/gr-dvbs2"
head "https://github.com/drmpeg/gr-dvbs2.git"
Expand All @@ -19,7 +17,7 @@ def install
] + std_cmake_args

system "cmake", "..", *args
system "make install"
system "make", "install"
end
end
end
Expand Down
4 changes: 1 addition & 3 deletions gr-dvbt.rb
@@ -1,5 +1,3 @@
require "formula"

class GrDvbt < Formula
homepage "https://github.com/BogdanDIA/gr-dvbt"
head "https://github.com/BogdanDIA/gr-dvbt.git"
Expand All @@ -17,7 +15,7 @@ def install
] + std_cmake_args

system "cmake", "..", *args
system "make install"
system "make", "install"
end
end
end
4 changes: 1 addition & 3 deletions gr-eventstream.rb
@@ -1,5 +1,3 @@
require "formula"

class GrEventstream < Formula
homepage "https://github.com/osh/gr-eventstream"
head "https://github.com/osh/gr-eventstream.git"
Expand All @@ -21,7 +19,7 @@ def install
] + std_cmake_args

system "cmake", "..", *args
system "make install"
system "make", "install"
end
end
end
4 changes: 1 addition & 3 deletions gr-fchdetection.rb
@@ -1,5 +1,3 @@
require "formula"

class GrFchdetection < Formula
homepage "https://github.com/hzhua/gr-fchdetection"
head "https://github.com/hzhua/gr-fchdetection.git"
Expand All @@ -21,7 +19,7 @@ def install
] + std_cmake_args

system "cmake", "..", *args
system "make install"
system "make", "install"
end
end
end
Expand Down
4 changes: 1 addition & 3 deletions gr-fosphor.rb
@@ -1,5 +1,3 @@
require "formula"

class GrFosphor < Formula
homepage "http://sdr.osmocom.org/trac/wiki/fosphor"
head "git://git.osmocom.org/gr-fosphor"
Expand All @@ -22,7 +20,7 @@ def install
args << "-DENABLE_QT=ON" if build.with? "qt"

system "cmake", "..", *args
system "make install"
system "make", "install"
end
end
end
4 changes: 1 addition & 3 deletions gr-gsm.rb
@@ -1,5 +1,3 @@
require "formula"

class GrGsm < Formula
homepage "https://github.com/ptrkrysik/gr-gsm"
head "https://github.com/ptrkrysik/gr-gsm.git"
Expand All @@ -23,7 +21,7 @@ def install

ENV.deparallelize
system "cmake", "..", *args
system "make install"
system "make", "install"
end
end
end
4 changes: 1 addition & 3 deletions gr-ham.rb
@@ -1,5 +1,3 @@
require "formula"

class GrHam < Formula
homepage "https://github.com/argilo/gr-ham"
head "https://github.com/argilo/gr-ham.git"
Expand All @@ -17,7 +15,7 @@ def install
] + std_cmake_args

system "cmake", "..", *args
system "make install"
system "make", "install"
end
end
end
4 changes: 1 addition & 3 deletions gr-ieee802-11.rb
@@ -1,5 +1,3 @@
require "formula"

class GrIeee80211 < Formula
homepage "https://github.com/bastibl/gr-ieee802-11"
head "https://github.com/bastibl/gr-ieee802-11.git"
Expand All @@ -21,7 +19,7 @@ def install
] + std_cmake_args

system "cmake", "..", *args
system "make install"
system "make", "install"
end
end
end
4 changes: 1 addition & 3 deletions gr-ieee802-15-4.rb
@@ -1,5 +1,3 @@
require "formula"

class GrIeee802154 < Formula
homepage "https://github.com/bastibl/gr-ieee802-15-4"
head "https://github.com/bastibl/gr-ieee802-15-4.git"
Expand All @@ -20,7 +18,7 @@ def install
] + std_cmake_args

system "cmake", "..", *args
system "make install"
system "make", "install"
end
end
end
4 changes: 1 addition & 3 deletions gr-ieee802154g.rb
@@ -1,5 +1,3 @@
require "formula"

class GrIeee802154g < Formula
homepage "https://github.com/dudmuck/gr-ieee802154g"
head "https://github.com/dudmuck/gr-ieee802154g.git"
Expand All @@ -22,7 +20,7 @@ def install
] + std_cmake_args

system "cmake", "..", *args
system "make install"
system "make", "install"
end
end
end
Expand Down
4 changes: 1 addition & 3 deletions gr-iqbal.rb
@@ -1,5 +1,3 @@
require "formula"

class GrIqbal < Formula
homepage "http://www.osmocom.org/"
head "git://git.osmocom.org/gr-iqbal"
Expand All @@ -21,7 +19,7 @@ def install
] + std_cmake_args

system "cmake", "..", *args
system "make install"
system "make", "install"
end
end
end
Expand Down
4 changes: 1 addition & 3 deletions gr-ldpc.rb
@@ -1,5 +1,3 @@
require "formula"

class GrLdpc < Formula
homepage "https://github.com/manuts/gr-ldpc"
head "https://github.com/manuts/gr-ldpc.git"
Expand All @@ -20,7 +18,7 @@ def install
] + std_cmake_args

system "cmake", "..", *args
system "make install"
system "make", "install"
end
end
end
4 changes: 1 addition & 3 deletions gr-lte.rb
@@ -1,5 +1,3 @@
require "formula"

class GrLte < Formula
homepage "https://github.com/kit-cel/gr-lte"
head "https://github.com/kit-cel/gr-lte.git"
Expand All @@ -23,7 +21,7 @@ def install
] + std_cmake_args

system "cmake", "..", *args
system "make install"
system "make", "install"
end
end
end
Expand Down
4 changes: 1 addition & 3 deletions gr-mac.rb
@@ -1,5 +1,3 @@
require "formula"

class GrMac < Formula
homepage "https://github.com/balint256/gr-mac"
head "https://github.com/balint256/gr-mac.git"
Expand All @@ -17,7 +15,7 @@ def install
] + std_cmake_args

system "cmake", "..", *args
system "make install"
system "make", "install"
end
end
end
4 changes: 1 addition & 3 deletions gr-mediatools.rb
@@ -1,5 +1,3 @@
require "formula"

class GrMediatools < Formula
homepage "https://github.com/osh/gr-mediatools"
head "https://github.com/osh/gr-mediatools.git"
Expand All @@ -22,7 +20,7 @@ def install
] + std_cmake_args

system "cmake", "..", *args
system "make install"
system "make", "install"
end
end
end
Expand Down
4 changes: 1 addition & 3 deletions gr-op25.rb
@@ -1,5 +1,3 @@
require "formula"

class GrOp25 < Formula
homepage "http://op25.osmocom.org/trac/wiki"
head "git://op25.osmocom.org/op25.git"
Expand All @@ -22,7 +20,7 @@ def install
] + std_cmake_args

system "cmake", "..", *args
system "make install"
system "make", "install"
end
end
end
Expand Down
4 changes: 1 addition & 3 deletions gr-osmosdr.rb
@@ -1,5 +1,3 @@
require "formula"

class GrOsmosdr < Formula
homepage "http://sdr.osmocom.org/trac/wiki/GrOsmoSDR"
head "git://git.osmocom.org/gr-osmosdr"
Expand All @@ -19,7 +17,7 @@ def install
] + std_cmake_args

system "cmake", "..", *args
system "make install"
system "make", "install"
end
end
end
4 changes: 1 addition & 3 deletions gr-pcap.rb
@@ -1,5 +1,3 @@
require "formula"

class GrPcap < Formula
homepage "https://github.com/osh/gr-pcap"
head "https://github.com/osh/gr-pcap.git"
Expand All @@ -19,7 +17,7 @@ def install
] + std_cmake_args

system "cmake", "..", *args
system "make install"
system "make", "install"
end
end
end
4 changes: 1 addition & 3 deletions gr-qam.rb
@@ -1,5 +1,3 @@
require "formula"

class GrQam < Formula
homepage "https://github.com/argilo/gr-qam"
head "https://github.com/argilo/gr-qam.git"
Expand All @@ -22,7 +20,7 @@ def install
] + std_cmake_args

system "cmake", "..", *args
system "make install"
system "make", "install"
end
end
end
Expand Down
4 changes: 1 addition & 3 deletions gr-rds.rb
@@ -1,5 +1,3 @@
require "formula"

class GrRds < Formula
homepage "https://github.com/balint256/gr-rds"
head "https://github.com/bastibl/gr-rds.git"
Expand All @@ -18,7 +16,7 @@ def install
] + std_cmake_args

system "cmake", "..", *args
system "make install"
system "make", "install"
end
end
end

0 comments on commit 5d7678d

Please sign in to comment.