Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 43 lines (33 sloc) 998 Bytes
#!/usr/bin/env beesh
# BEE_VERSION openssl1-1.1.1t-0
#SRCURL[0]="https://www.openssl.org/source/openssl-${PKGVERSION}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/1cfee919e0eac6be62c88c5ae8bcd91e/openssl-1.1.1t.tar.gz"
# PATCHURL+=()
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
mee_patch() {
bee_patch "${@}"
# no html
sed -e '/^install_docs:/ s/install_html_docs//' -i Configurations/unix-Makefile.tmpl
# no func() docs
sed -e 's/podpath=man1:man3:man5:man7/podpath=man1:man5:man7/;s/\[ 1, 3, 5, 7 \]/[ 1, 5, 7 ]/;' -i util/process_docs.pl
}
mee_configure() {
start_cmd ${S}/config \
--prefix=${PREFIX} \
--openssldir=${SYSCONFDIR}/ssl \
--libdir=lib \
shared \
zlib-dynamic
}
mee_build() {
start_cmd make depend
start_cmd make ${BEE_MAKEFLAGS}
start_cmd make -j1 test
}
mee_install() {
start_cmd make DESTDIR=${D} MANDIR=${MANDIR} MANSUFFIX=ssl install
}