60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
+
+
|
* `./configure`
* Edit the Makefile to specify /usr/local/opt/openssl/lib/libcrypto.a
and /usr/local/opt/openssl/lib/libssl.a in place of
-lcrypto and -lssl, and to add -liconv at the end
* `CFLAGS="-Os" make -e clean fossil`
* Verify no shared library dependencies using: `otool -L ./fossil`
* `strip fossil`
* `codesign -s drh@sqlite.org fossil`
* Verify the signature using: `codesign -d -v fossil`
* `tar czf fossil-macosx-$VERSION.tar.gz fossil`
* `fossil uv add fossil-macosx-$VERSION.tar.gz`
* `fossil uv sync`
## Source Tarball
* `fossil tarball --name fossil-$VERSION version-$VERSION fossil-src-$VERSION.tar.gz`
|