Skip to content
Permalink
a22756b64e
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 35 lines (23 sloc) 611 Bytes
#!/bin/env beesh
PGRP=( core )
SRCURL="http://www.zlib.net/zlib-1.2.5.tar.bz2"
# PATCHES=""
# EXCLUDE=""
B=${S}
mee_patch() {
# patch for 1.2.5
sed -i 's/ifdef _LARGEFILE64_SOURCE/ifndef _LARGEFILE64_SOURCE/' zlib.h
}
mee_configure() {
CFLAGS='-fPIC -O3' ${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.1.2.5 ${D}/usr/lib/libz.so
}