1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Packaging for OS X
Several software tools assist with the installation of open source software
on OS X. The authors of libfaketime maintain the libfaketime build spec files
for MacPorts, Homebrew, and Fink.
## MacPorts
Installing libfaketime via MacPorts is based on the provided Portfile, which
has been included in the official MacPorts distribution since October, 2013.
Users therefore can use "sudo port install libfaketime" as installation
command.
Some libfaketime Portfile caveats:
- Github-based source file distribution
- Non-clang-compilers need to be blacklisted
- MacPorts folks have requested to avoid a platform-specific Makefile.OSX in
the future
Portfile submission is documented in https://www.macports.org/guide/#project.contributing
and handled via a ticketing system:
- https://trac.macports.org/ticket/40662
- https://trac.macports.org/ticket/40748
## Homebrew
The libfaketime 'formula' for Homebrew is available since November, 2013.
Homebrew users can use 'brew install libfaketime' as installation command.
Some libfaketime formula caveats:
- "depends_on :macos => :lion" must be set for libfaketime >=0.9.5
- :llvm builds <= 2336 must be blacklisted because libfaketime =0.9.5
requires a compiler with thread local storage support.
Formula submission is handled via pull request on Github following the
"one formula per commit, one commit per formula" rule, which necessitates
squashing commits and forced pushes when applying fixes. Style issues
complementary to the documentation have been discussed in
https://github.com/mxcl/homebrew/pull/23245
## Fink
A libfaketime.info file is included in the Fink 10.7 tree since October,
2013, and installed using
fink install libfaketime
Some libfaketime fink info file caveats:
- The dynamic library must be declared as private Shlib; this also necessitates
BuildDepends: fink (>= 0.28)
- "Distribution: 10.7, 10.8, 10.9" is required because libfaketime >=0.9.5 does
not work on OS X 10.6 or before anymore.
- When compiling, PREFIX=%{p} needs to be used because this path is hardcoded
into the wrapper. However, "make install" needs to deploy into PREFIX=%{i} to
make packaging work.
Submission is via https://sourceforge.net/p/fink/package-submissions/
|