commit f256fa46da3193445ed7ddb33075d697ebe15799 Author: EnumDev Date: Thu Oct 9 20:28:20 2025 +0300 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3e58e5f --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +# Exclude bpm archives +*.bpm \ No newline at end of file diff --git a/check-version.sh b/check-version.sh new file mode 100644 index 0000000..7595ae5 --- /dev/null +++ b/check-version.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +# Git repository +REPO="https://git.kernel.org/pub/scm/utils/mdadm/mdadm.git" + +# Get tag name using 'git ls-remote' +TAG_NAME=$(git ls-remote --exit-code --refs --tags --sort='v:refname' "$REPO" | cut -d'/' -f3 | grep -E 'mdadm-[0-9]\.[0-9]$' | tail -1) + +# Trim prefix +VERSION=${TAG_NAME//mdadm-} + +echo "$VERSION" diff --git a/pkg.info b/pkg.info new file mode 100644 index 0000000..ef2e805 --- /dev/null +++ b/pkg.info @@ -0,0 +1,20 @@ +name: mdadm +description: Manager of Linux Software RAID implemented through Multiple Devices driver +version: "4.4" +revision: 1 +url: https://git.kernel.org/pub/scm/utils/mdadm/mdadm.git/ +license: GPL2-or-later +architecture: any +type: source +depends: + - glibc + - udev +optional_depends: + - bash +make_depends: + - man-db +downloads: + - url: https://git.kernel.org/pub/scm/utils/mdadm/mdadm.git/snapshot/mdadm-${BPM_PKG_VERSION}.tar.gz + extract_to: ${BPM_SOURCE} + extract_strip_components: 1 + checksum: 680fed532857088e0cd87c56c00033ae35eae0a3f9cb7e1523b345ba8717fb93 diff --git a/source.sh b/source.sh new file mode 100644 index 0000000..8fffd5f --- /dev/null +++ b/source.sh @@ -0,0 +1,25 @@ +# 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 prepare function is executed in the root of the temp directory +# This function is used for putting downloaded files to the correct location or applying patches +prepare() { + # Fix issue with GCC 15 + sed -i -e "s/__u8 signature\[4\]/& __attribute__ ((nonstring))/" "$BPM_SOURCE"/platform-intel.h +} + +# 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() { + make DESTDIR="$BPM_OUTPUT" BINDIR=/usr/sbin install + + # Install package license + install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/mdadm/COPYING +}