Skip to content

Commit 788143c

Browse files
committed
macos wheel building: compile xz (liblzma.dylib) from source
1 parent 55a84d6 commit 788143c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/wheels.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,13 @@ jobs:
3838
./build-deps.sh
3939
CIBW_BEFORE_ALL_MACOS: >
4040
brew install pkg-config autoconf-archive autoconf automake &&
41+
git clone https://github.com/tukaani-project/xz &&
42+
cd xz &&
43+
autoreconf --install && ./configure && make && make install &&
44+
cd ..
4145
git clone https://github.com/unicode-org/icu &&
4246
cd icu/icu4c/source &&
43-
./configure && make && make install &&
47+
./configure && make && make install && ls -l /usr/local/lib/libicu* &&
4448
cd ../../../ &&
4549
git clone https://gitlab.gnome.org/GNOME/libxml2 &&
4650
cd libxml2 &&

0 commit comments

Comments
 (0)