-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test/release process #1
Conversation
bf14be7
to
a77ecd1
Compare
6437012
to
b0ce9a7
Compare
3f43250
to
f92a199
Compare
curl -L "https://downloads.sourceforge.net/project/libpng/libpng16/1.6.37/libpng-1.6.37.tar.gz" -o libpng-1.6.37.tar.gz | ||
tar zxf libpng-1.6.37.tar.gz | ||
pushd libpng-1.6.37 | ||
./configure | ||
make -j $(nproc) | ||
make install | ||
popd | ||
|
||
URLS=( | ||
https://www.zlib.net/zlib-1.2.11.tar.gz | ||
https://downloads.sourceforge.net/project/libpng/libpng16/1.6.37/libpng-1.6.37.tar.gz | ||
https://download.savannah.gnu.org/releases/freetype/freetype-2.10.4.tar.gz | ||
https://github.com/harfbuzz/harfbuzz/archive/2.6.4.tar.gz | ||
) | ||
curl -L "https://download.savannah.gnu.org/releases/freetype/freetype-2.12.1.tar.gz" -o freetype-2.12.1.tar.gz | ||
tar zxf freetype-2.12.1.tar.gz | ||
pushd freetype-2.12.1 | ||
./configure | ||
make -j $(nproc) | ||
make install | ||
popd |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah. Sometimes doing the simplest thing is the best. DRY was not helping before 😄
# missing macro in the locally installed automake | ||
cp /usr/share/aclocal/pkg.m4 /usr/local/share/aclocal |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be relayed upstream to RalfG/python-wheels-manylinux-build
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems to be a known issue in the base manylinux image: pypa/manylinux#731
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
2020... 😬
No description provided.