Skip to content
Permalink
update-libxslt…
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
@wwwutz
Latest commit 89b3c1f Mar 2, 2020 History
- nice be0
- fixed SRCURL
3 contributors

Users who have contributed to this file

@donald @wwwutz @thomas
executable file 42 lines (32 sloc) 748 Bytes
#!/bin/env beesh
# BEE_VERSION boost-1.72.0-1
# SRCURL[0]="https://dl.bintray.com/boostorg/release/${PKGVERSION}/source/boost_${PKGVERSION//./_}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/e2b0b1eac302880461bcbef097171758/boost_1_72_0.tar.gz"
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
mee_configure() {
cd ${S}
start_cmd ${S}/bootstrap.sh \
--prefix=${PREFIX} \
--libdir=${LIBDIR} \
--with-libraries=headers
}
mee_install() {
cd ${S}
start_cmd ${S}/b2 \
--prefix=${D}${PREFIX} \
--build-dir=${B} \
install
}
#mee_install() {
# bee_install
#}
#mee_install_post() {
# exit
#}