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 40 lines (29 sloc) 755 Bytes
#!/usr/bin/env beesh
# BEE_VERSION zstd-1.5.6-0
#SRCURL[0]="https://github.com/facebook/zstd/releases/download/v${PKGVERSION}/zstd-${PKGVERSION}.tar.zst"
SRCURL[0]="https://beehive.molgen.mpg.de/bbd2a625cb4407f0003d9f49e406463f/zstd-1.5.6.tar.zst"
# PATCHURL+=()
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
#mee_configure() {
# bee_configure
#}
mee_build() {
bee_build default
bee_build -C contrib/pzstd
}
mee_install() {
bee_install DESTDIR="${D}"
# https://github.com/facebook/zstd/pull/3752/files
install -v -d -m 755 ${D}${BINDIR}
install -v -m 755 contrib/pzstd/pzstd ${D}${BINDIR}/pzstd
}
#mee_install_post() {
# exit
#}