Skip to content
Permalink
63dd37793b
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 30 lines (21 sloc) 675 Bytes
#!/bin/env beesh
# BEE_VERSION zlib-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() {
# bee_patch "${@}"
#}
mee_configure() {
start_cmd ${S}/configure --prefix=${PREFIX} --eprefix=${EXECPREFIX} --libdir=${LIBDIR} --includedir=${INCLUDEDIR} --sharedlibdir=${LIBDIR}
}
mee_build() {
bee_build
make check
}
mee_install() {
bee_install
mkdir -pv ${D}/lib
mv -v ${D}/usr/lib/libz.so.* ${D}/lib
ln -sfv /lib/libz.so.${PKGVERSION} ${D}/usr/lib/libz.so
ln -sfv /lib/libz.so.${PKGVERSION} ${D}/usr/lib/libz.so.1
}