Mercurial > hg > orthanc-object-storage
view Common/CryptoPPPackage.sh @ 95:33790e0000bb
Plugins are now disabled if their section is missing in the configuration file.
author | Alain Mazy <am@osimis.io> |
---|---|
date | Mon, 19 Dec 2022 09:58:23 +0100 |
parents | 9c0dfd10d5d0 |
children |
line wrap: on
line source
#!/bin/bash set -ex VERSION=840 TARGET=/tmp/cryptopp-${VERSION} rm -rf ${TARGET} mkdir -p ${TARGET}/cryptopp cd ${TARGET}/cryptopp wget https://www.cryptopp.com/cryptopp${VERSION}.zip unzip ./cryptopp${VERSION}.zip rm ./cryptopp${VERSION}.zip rm -rf ./TestData rm -rf ./TestPrograms rm -rf ./TestVectors cd /tmp tar cvfz cryptopp-${VERSION}.tar.gz cryptopp-${VERSION} md5sum /tmp/cryptopp-${VERSION}.tar.gz