Skip to content

Commit

Permalink
rp 1.0
Browse files Browse the repository at this point in the history
Closes Homebrew/legacy-homebrew#23244.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
  • Loading branch information
thetlk authored and adamv committed Oct 30, 2013
1 parent d0e0cdd commit ec2df91
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions Formula/rp.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
require 'formula'

class Rp < Formula
homepage 'http://0vercl0k.github.io/rp/'
head 'https://github.com/0vercl0k/rp.git'
url 'https://github.com/0vercl0k/rp/archive/v1.tar.gz'
version '1.0'
sha1 '01f55e396048472ee8a0e452cc597858733ee390'

depends_on :macos => :lion
depends_on 'cmake' => :build

def patches
# In order to have the same binary name in 32 and 64 bits.
DATA
end

def install
mkdir 'build' do
system "cmake", ".."
system "make"
end
bin.install 'bin/rp-osx'
end
end

__END__
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 79d576b..34c2afa 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -36,12 +36,10 @@ set(RP_NAME "${RP_NAME}-${RP_PLAT}")

if(CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT(optX86BUILD))
set(FLAG_CXX "-m64")
- set(RP_NAME "${RP_NAME}-x64")
set(BEA_LIBRARY "BeaEngine.x64.${RP_PLAT}.${EXTENSION_LIBRARY}")
set(ARGTABLE_LIBRARY "argtable2.x64.${RP_PLAT}.${EXTENSION_LIBRARY}")
else()
set(FLAG_CXX "-m32")
- set(RP_NAME "${RP_NAME}-x86")
set(BEA_LIBRARY "BeaEngine.x86.${RP_PLAT}.${EXTENSION_LIBRARY}")
set(ARGTABLE_LIBRARY "argtable2.x86.${RP_PLAT}.${EXTENSION_LIBRARY}")
endif(CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT(optX86BUILD))

0 comments on commit ec2df91

Please sign in to comment.