Skip to content
Permalink
077d6ef2a4
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
2 contributors

Users who have contributed to this file

@thomas @donald
executable file 35 lines (24 sloc) 502 Bytes
#!/bin/env beesh
# BEE_VERSION hdf5-1.10.5-0
SRCURL[0]="https://support.hdfgroup.org/ftp/HDF5/current/src/hdf5-${PKGVERSION}.tar.gz"
PATCHURL[0]=""
BEE_BUILDTYPE=autotools
export CFLAGS='-fPIC'
# EXCLUDE=""
mee_patch() {
bee_patch
}
mee_configure() {
bee_configure --enable-shared=no --disable-silent-rules \
--enable-cxx
}
mee_build() {
bee_build
}
mee_install() {
bee_install
}
mee_install_post() {
# remove /usr/share/hdf5_examples
rm -vr ${D}/usr/share
}