-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
plzip: add the parallel variant of lzip
plzip can be taken as an alternative to pigz. plzip additionally needs the lzlib package, which installs a small static library and a sole header file.
- Loading branch information
Showing
2 changed files
with
88 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION lzlib-1.13-0 | ||
|
||
## The source URL(s) array | ||
# SRCURL[0]="https://download.savannah.gnu.org/releases/lzip/lzlib-${PKGVERSION}.tar.gz" | ||
SRCURL[0]="https://beehive.molgen.mpg.de/76748744393c000a15ded7a3e613aa79/lzlib-1.13.tar.gz" | ||
|
||
## enforce 'autotools' to cope with the './configure' used inhere | ||
BEE_BUILDTYPE=autotools | ||
|
||
## Add URLs/pathes to patch files | ||
# PATCHURL+=() | ||
|
||
## files that should not be added from the image directory. | ||
# EXCLUDE+=() | ||
|
||
|
||
## uncomment to change default | ||
# build_in_sourcedir | ||
|
||
## specify different source directory | ||
# sourcesubdir_append src | ||
|
||
|
||
#mee_extract() { | ||
# bee_extract "${@}" | ||
#} | ||
|
||
#mee_patch() { | ||
# bee_patch "${@}" | ||
#} | ||
|
||
#mee_configure() { | ||
# bee_configure | ||
#} | ||
|
||
#mee_build() { | ||
# bee_build | ||
#} | ||
|
||
#mee_install() { | ||
# bee_install | ||
#} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION plzip-1.10-0 | ||
|
||
## The source URL(s) array | ||
# SRCURL[0]="https://download.savannah.gnu.org/releases/lzip/plzip-${PKGVERSION}.tar.gz" | ||
SRCURL[0]="https://beehive.molgen.mpg.de/4601ee7a0a5e7a56a71b0558663d554e/plzip-1.10.tar.gz" | ||
|
||
## enforce 'autotools' to cope with the './configure' used inhere | ||
BEE_BUILDTYPE=autotools | ||
|
||
## Add URLs/pathes to patch files | ||
# PATCHURL+=() | ||
|
||
## files that should not be added from the image directory. | ||
# EXCLUDE+=() | ||
|
||
|
||
## uncomment to change default | ||
# build_in_sourcedir | ||
|
||
## specify different source directory | ||
# sourcesubdir_append src | ||
|
||
|
||
#mee_extract() { | ||
# bee_extract "${@}" | ||
#} | ||
|
||
#mee_patch() { | ||
# bee_patch "${@}" | ||
#} | ||
|
||
#mee_configure() { | ||
# bee_configure | ||
#} | ||
|
||
#mee_build() { | ||
# bee_build | ||
#} | ||
|
||
#mee_install() { | ||
# bee_install | ||
#} |