aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/gpac.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/Library/Formula/gpac.rb b/Library/Formula/gpac.rb
index b6862158e..150f0de7e 100644
--- a/Library/Formula/gpac.rb
+++ b/Library/Formula/gpac.rb
@@ -28,10 +28,6 @@ class Gpac < Formula
depends_on 'ffmpeg' => :optional if ARGV.build_head?
depends_on 'openjpeg' => :optional if ARGV.build_head?
- def options
- [['--with-lowercase', 'Install binaries with lowercase names']]
- end
-
def install
ENV.deparallelize
@@ -47,18 +43,6 @@ class Gpac < Formula
system "chmod +x configure"
system "./configure", *args
-
- system "chmod", "+rw", "Makefile"
- ["MP4Box","MP4Client"].each do |name|
- filename = "applications/#{name.downcase}/Makefile"
- system "chmod", "+rw", filename
-
- if ARGV.include? '--with-lowercase'
- inreplace filename, name, name.downcase
- inreplace "Makefile", name, name.downcase
- end
- end
-
system "make"
system "make install"
end