I am trying to build my own openssl on core24, here is my snapcraft.yaml.
parts:
openssl:
plugin: nil
override-pull: |
wget https://github.com/openssl/openssl/releases/download/openssl-3.4.0/openssl-3.4.0.tar.gz -O openssl-src.tar.gz
tar zxf openssl-src.tar.gz --strip-components=1
rm -f openssl-src.tar.gz
override-build: |
./config --prefix=/usr/local --libdir=lib
make && make install
build-packages:
- wget
- pkg-config
Can’t use autotools plugin cz openssl default configure files are config and Configure(With a capital C),which does not meet the requirements of autotools.
It‘s a simple build and I have no idea why, am I missing something?