11 lines
260 B
Makefile
11 lines
260 B
Makefile
|
name = openssl
|
||
|
version = 1.1.1k
|
||
|
URL = https://www.openssl.org/source/openssl-$(version).tar.gz
|
||
|
|
||
|
configure_backend = configure_custom
|
||
|
configure_custom:
|
||
|
cd $(bdir) && ./Configure --prefix=$(PREFIX) linux-$(ARCH)
|
||
|
|
||
|
SYSCONF ?= ../../
|
||
|
include $(SYSCONF)/package.mk
|