blob: cd87b3c23475d46d2be09480f787bcae6331f34b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
pkgname=openssl
version=4.0.1
upstream="https://github.com/openssl/openssl/releases/download/openssl-${version}/openssl-${version}.tar.gz"
build_no=2
makedepends=(perl libxcrypt)
function do_configure {
./Configure --prefix=/usr --libdir=/usr/lib --openssldir=/etc/ssl shared
}
function do_build {
make -j$(nproc)
}
function do_install {
make DESTDIR=${DESTDIR} install
}
|