Initial commit

This commit is contained in:
2025-10-09 20:28:20 +03:00
commit f256fa46da
4 changed files with 59 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
# Exclude bpm archives
*.bpm
+12
View File
@@ -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"
+20
View File
@@ -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
+25
View File
@@ -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
}