diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/uade.rb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Library/Formula/uade.rb b/Library/Formula/uade.rb index 746b4b97e..e5e792eb2 100644 --- a/Library/Formula/uade.rb +++ b/Library/Formula/uade.rb @@ -10,8 +10,33 @@ class Uade < Formula depends_on 'pkg-config' => :build depends_on 'libao' + # Upstream patch to fix compiler detection under superenv + def patches; DATA; end unless build.head? + def install system "./configure", "--prefix=#{prefix}" system "make install" end end + +__END__ +diff --git a/configure b/configure +index 05bfa9b..a73608e 100755 +--- a/configure ++++ b/configure +@@ -399,13 +399,13 @@ if test -n "$sharedir"; then + uadedatadir="$sharedir" + fi + +-$NATIVECC -v 2>/dev/null >/dev/null ++$NATIVECC --version 2>/dev/null >/dev/null + if test "$?" != "0"; then + echo Native CC "$NATIVECC" not found, please install a C compiler + exit 1 + fi + +-$TARGETCC -v 2>/dev/null >/dev/null ++$TARGETCC --version 2>/dev/null >/dev/null + if test "$?" != "0"; then + echo Target CC "$TARGETCC" not found, please install a C compiler + exit 1 |
