1
0
mirror of https://github.com/docker-library/postgres.git synced 2025-11-17 13:02:40 +03:00
Files
postgres/ossp-uuid.template
2017-03-06 12:35:30 -08:00

17 lines
519 B
Plaintext

&& wget -O uuid.tar.gz "http://www.mirrorservice.org/sites/ftp.ossp.org/pkg/lib/uuid/uuid-$OSSP_UUID_VERSION.tar.gz" \
&& echo "$OSSP_UUID_SHA256 *uuid.tar.gz" | sha256sum -c - \
&& mkdir -p /usr/src/ossp-uuid \
&& tar \
--extract \
--file uuid.tar.gz \
--directory /usr/src/ossp-uuid \
--strip-components 1 \
&& rm uuid.tar.gz \
&& cd /usr/src/ossp-uuid \
&& ./configure \
--prefix=/usr \
&& make -j "$(getconf _NPROCESSORS_ONLN)"\
&& make install \
&& cd / \
&& rm -rf /usr/src/ossp-uuid \