From 21d2f5b658bb85cc599a43c9cdd49ec0afeaaac9 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Tue, 23 Feb 2021 15:51:54 -0300 Subject: Remove ./configure script from Homebrew formulas --- Formula/autoqemu-latest.rb | 3 +-- Formula/fallible-latest.rb | 3 +-- Formula/fallible.rb | 3 +-- Formula/remembering-latest.rb | 3 +-- Formula/remembering.rb | 3 +-- 5 files changed, 5 insertions(+), 10 deletions(-) (limited to 'Formula') diff --git a/Formula/autoqemu-latest.rb b/Formula/autoqemu-latest.rb index f398dd4..3ad8bcf 100644 --- a/Formula/autoqemu-latest.rb +++ b/Formula/autoqemu-latest.rb @@ -6,10 +6,9 @@ class AutoqemuLatest < Formula license 'AGPL-3.0-or-later' def install - system './configure', "--prefix=#{prefix}" system 'make' system 'make', 'check' - system 'make', 'install' + system 'make', 'install', "PREFIX=#{prefix}" end test do diff --git a/Formula/fallible-latest.rb b/Formula/fallible-latest.rb index e3083c0..2699b8f 100644 --- a/Formula/fallible-latest.rb +++ b/Formula/fallible-latest.rb @@ -8,9 +8,8 @@ class FallibleLatest < Formula depends_on 'valgrind' => :build def install - system './configure', "--prefix=#{prefix}" system 'make' system 'make', 'check' - system 'make', 'install' + system 'make', 'install', "PREFIX=#{prefix}" end end diff --git a/Formula/fallible.rb b/Formula/fallible.rb index 69d38d6..9c7b493 100644 --- a/Formula/fallible.rb +++ b/Formula/fallible.rb @@ -8,9 +8,8 @@ class Fallible < Formula depends_on 'valgrind' => :build def install - system './configure', "--prefix=#{prefix}" system 'make' system 'make', 'check' - system 'make', 'install' + system 'make', 'install', "PREFIX=#{prefix}" end end diff --git a/Formula/remembering-latest.rb b/Formula/remembering-latest.rb index edca388..01830f5 100644 --- a/Formula/remembering-latest.rb +++ b/Formula/remembering-latest.rb @@ -6,10 +6,9 @@ class RememberingLatest < Formula license 'AGPL-3.0-or-later' def install - system './configure', "--prefix=#{prefix}" system 'make' system 'make', 'check' - system 'make', 'install' + system 'make', 'install', "PREFIX=#{prefix}" end test do diff --git a/Formula/remembering.rb b/Formula/remembering.rb index 1652045..e6dfa2c 100644 --- a/Formula/remembering.rb +++ b/Formula/remembering.rb @@ -6,10 +6,9 @@ class Remembering < Formula license 'AGPL-3.0-or-later' def install - system './configure', "--prefix=#{prefix}" system 'make' system 'make', 'check' - system 'make', 'install' + system 'make', 'install', "PREFIX=#{prefix}" end test do -- cgit v1.2.3