New Formula: physfs

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
eregon 2010-11-08 03:10:48 +01:00 committed by Adam Vandenberg
parent 0cea897f61
commit 793d4ea70c

14
Formula/physfs.rb Normal file
View file

@ -0,0 +1,14 @@
require 'formula'
class Physfs <Formula
url 'http://icculus.org/physfs/downloads/physfs-2.0.1.tar.gz'
homepage 'http://icculus.org/physfs/'
md5 'df00465fcfa80e87f718961c6dd6b928'
depends_on 'cmake' => :build
def install
system "cmake . #{std_cmake_parameters} -DPHYSFS_BUILD_WX_TEST=FALSE"
system "make install"
end
end