Initial commit

This commit is contained in:
2026-03-28 21:59:41 +02:00
commit 2c6dbe9c93
4 changed files with 55 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
# Ignore BPM archives and signatures
*.bpm
*.bpm.sig
+14
View File
@@ -0,0 +1,14 @@
#!/bin/bash
URL="https://www.zlib.net/pigz/"
# Get version number from FTP server
VERSION=$(curl -s -L "$URL" | grep -o -P 'pigz-([\d.]+).tar.gz')
# Remove prefix
VERSION=${VERSION//pigz-/}
# Remove '.tar.gz' suffix from VERSION variable
VERSION=${VERSION//.tar.gz/}
echo "$VERSION"
+17
View File
@@ -0,0 +1,17 @@
name: pigz
description: Parallel implementation of the gzip file compressor
version: "2.8"
revision: 1
url: https://www.zlib.net/pigz/
license: zlib
maintainers:
- [email protected]
architecture: any
type: source
depends:
- zlib
downloads:
- url: https://www.zlib.net/pigz/pigz-${BPM_PKG_VERSION}.tar.gz
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: eb872b4f0e1f0ebe59c9f7bd8c506c4204893ba6a8492de31df416f0d5170fd0
+21
View File
@@ -0,0 +1,21 @@
# This is the source.sh script. It is executed by BPM in a temporary directory when compiling a source package
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
# The build function is executed in the source directory
# This function is used to compile the source code
build() {
make
}
# The package function is executed in the source directory
# This function is used to move the compiled files into the output directory
package() {
install -Dm755 pigz "$BPM_OUTPUT"/usr/bin/pigz
# Create symlink to unpigz
ln -sf pigz "$BPM_OUTPUT"/usr/bin/unpigz
# Install man page
install -Dm644 pigz.1 "$BPM_OUTPUT"/usr/share/man/man1/pigz.1
}