From 2c6dbe9c93db96fbb267cdce54603ec9b8ff8656 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sat, 28 Mar 2026 21:59:41 +0200 Subject: [PATCH] Initial commit --- .gitignore | 3 +++ check-version.sh | 14 ++++++++++++++ pkg.info | 17 +++++++++++++++++ source.sh | 21 +++++++++++++++++++++ 4 files changed, 55 insertions(+) create mode 100644 .gitignore create mode 100644 check-version.sh create mode 100644 pkg.info create mode 100644 source.sh diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9d96df7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +# Ignore BPM archives and signatures +*.bpm +*.bpm.sig diff --git a/check-version.sh b/check-version.sh new file mode 100644 index 0000000..7c624ed --- /dev/null +++ b/check-version.sh @@ -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" diff --git a/pkg.info b/pkg.info new file mode 100644 index 0000000..833098b --- /dev/null +++ b/pkg.info @@ -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: + - enumdev@enumerated.dev +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 diff --git a/source.sh b/source.sh new file mode 100644 index 0000000..15fcb50 --- /dev/null +++ b/source.sh @@ -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 +}