Permalink
Cannot retrieve contributors at this time
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?
bee-files/sbcl.be0
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
44 lines (31 sloc)
1.07 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 | |
#} |