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 44 lines (31 sloc) 1.07 KB
#!/usr/bin/env beesh
# BEE_VERSION sbcl-2.3.10-0
# more info: https://www.sbcl.org/
#SRCURL[0]="http://prdownloads.sourceforge.net/sbcl/sbcl-${PKGVERSION}-source.tar.bz2?download sbcl-${PKGVERSION}.tar.bz2"
SRCURL[0]="https://beehive.molgen.mpg.de/fc895a3a2755397aac7cde82023412b9/sbcl-2.3.10.tar.bz2"
#SRCURL[1]="http://prdownloads.sourceforge.net/sbcl/sbcl-2.3.10-x86-64-linux-binary.tar.bz2"
SRCURL[1]="https://beehive.molgen.mpg.de/1c114fda7a15c280cb5c04e81101e03b/sbcl-2.3.10-x86-64-linux-binary.tar.bz2"
# PATCHURL+=()
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
mee_configure() {
start_cmd rsync -av ${S}/ ${B} --exclude sbcl-2.3.10-x86-64-linux
}
mee_build() {
start_cmd cd ${S}/sbcl-2.3.10-x86-64-linux/
INSTALL_ROOT="${S}" start_cmd sh install.sh
start_cmd cd -
PATH="$PATH:${S}/bin" start_cmd sh make.sh sbcl --prefix=${PREFIX} --fancy
}
mee_install() {
SBCL_HOME="" INSTALL_ROOT="${D}${PREFIX}" start_cmd sh install.sh
}
#mee_install_post() {
# exit
#}