blob: 7b8052907f172dba7ef54c3a86c126c6bdf1dfbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
require 'formula'
class Libplist < Formula
url 'http://cgit.sukimashita.com/libplist.git/snapshot/libplist-1.6.tar.bz2'
homepage 'http://cgit.sukimashita.com/libplist.git/'
md5 '78fe4b8fb50e0bad267ffc6e77081cbe'
depends_on 'cmake' => :build
depends_on 'libxml2'
def install
ENV.deparallelize # make fails on an 8-core Mac Pro
# Disable Python bindings.
inreplace "CMakeLists.txt", 'OPTION(ENABLE_PYTHON "Enable Python bindings (needs Swig)" ON)',
'# Disabled Python Bindings'
system "cmake . #{std_cmake_parameters} -DCMAKE_INSTALL_NAME_DIR=#{lib}"
system "make install"
# Remove 'plutil', which duplicates the system-provided one. Leave the versioned one, though.
rm (bin+'plutil')
end
end
|