Skip to content

Commit

Permalink
Merge pull request #2169 from mariux64/add-pigz
Browse files Browse the repository at this point in the history
pigz: add version 2.6
  • Loading branch information
thomas authored Jul 22, 2021
2 parents 7787ac6 + ed5b823 commit aa7e73e
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions pigz.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#!/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
#}

0 comments on commit aa7e73e

Please sign in to comment.