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 28 lines (21 sloc) 469 Bytes
#!/bin/env beesh
# BEE_VERSION libminizip-1.2.12-0
# SRCURL="https://www.zlib.net/zlib-${PKGVERSION}.tar.xz"
SRCURL[0]="https://beehive.molgen.mpg.de/28687d676c04e7103bb6ff2b9694c471/zlib-1.2.12.tar.xz"
mee_patch() {
cd ${S}/contrib/minizip
libtoolize
aclocal
autoconf
automake --add-missing
}
mee_configure() {
start_cmd ${S}/contrib/minizip/configure --prefix=${PREFIX}
}
mee_build() {
bee_build
make check
}
mee_install() {
bee_install
}