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 45 lines (34 sloc) 986 Bytes
#!/usr/bin/env beesh
# BEE_VERSION mysql-8.0.17-2
#SRCURL[0]="https://dev.mysql.com/get/Downloads/MySQL-${PKGVERSION[2]}/mysql-${PKGVERSION}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/43c850197977b07fb33625304eaf5166/mysql-8.0.17.tar.gz"
# version from cmake/boost.cmake
#SRCURL[1]="https://downloads.sourceforge.net/boost/boost_1_69_0.tar.bz2"
SRCURL[1]="https://beehive.molgen.mpg.de/a1332494397bf48332cb152abfefcec2/boost_1_69_0.tar.bz2"
# PATCHURL+=()
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
mee_configure() {
bee_configure \
-DWITH_BOOST="${S}" \
-DWITH_SSL=system \
-DWITHOUT_SERVER=on \
-DINSTALL_MANDIR=share/man \
-DINSTALL_MYSQLSHAREDIR=/usr/share/mysql
}
#mee_build() {
# bee_build
#}
mee_install() {
bee_install
start_cmd rm -rf \
$D$PREFIX/docs \
$D$PREFIX/README \
$D$PREFIX/LICENSE
}