Skip to content
Permalink
cfce7a5f90
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 42 lines (30 sloc) 658 Bytes
#!/usr/bin/env beesh
# BEE_VERSION pigz-2.6-0
# more info: https://zlib.net/pigz
SRCURL[0]="https://beehive.molgen.mpg.de/a8a23d7dfb58d8c20438f382fb1d97c8/pigz-2.6.tar.gz"
# PATCHURL+=()
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
#mee_configure() {
# bee_configure
#}
#mee_build() {
# bee_build
#}
mee_install() {
mkdir -v -p ${D}/usr/bin
mkdir -v -p ${D}/usr/share/man/man1
for i in pigz unpigz; do
cp -v ${B}/${i} ${D}/usr/bin
cp -v ${B}/pigz.1 ${D}/usr/share/man/man1/${i}.1
done
}
#mee_install_post() {
# exit
#}