Skip to content
Permalink
8994b1e909
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 (24 sloc) 739 Bytes
#!/usr/bin/env beesh
# BEE_VERSION suitesparse-5.9.0-1
SRCURL[0]="https://github.com/DrTimothyAldenDavis/SuiteSparse/archive/refs/tags/v${PKGVERSION}.tar.gz suitesparse-v${PKGVERSION}.tar.gz"
# PATCHURL+=()
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
mee_configure() {
sed -i 's/CUDA = auto/CUDA = no/g' ${S}/SuiteSparse_config/SuiteSparse_config.mk
}
mee_build() {
bee_build CMAKE_OPTIONS="-DCMAKE_INSTALL_PREFIX=${PREFIX} -DCMAKE_INSTALL_LIBDIR=${LIBDIR}"
}
mee_install() {
bee_install INSTALL=${D}${PREFIX} CMAKE_OPTIONS="-DCMAKE_INSTALL_PREFIX=${PREFIX} -DCMAKE_INSTALL_LIBDIR=${LIBDIR}"
}
#mee_install_post() {
# exit
#}