Initial commit

This commit is contained in:
2025-09-30 17:33:45 +03:00
commit 1b7eaed645
4 changed files with 53 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/linux/kernel/git/dhowells/keyutils.git"
# Get tag name using 'git ls-remote'
TAG_NAME=$(git ls-remote --exit-code --refs --tags --sort='v:refname' "$REPO" | tail -1 | cut -d'/' -f3)
# Trim 'v' character in TAG_NAME variable
VERSION=$(echo "$TAG_NAME" | tr -d 'v')
echo "$VERSION"
+15
View File
@@ -0,0 +1,15 @@
name: keyutils
description: Linux key management utilities
version: 1.6.3
revision: 1
url: https://www.kernel.org
license: GPL2-or-later,LGPL2.1-or-later
architecture: any
type: source
depends:
- glibc
downloads:
- url: https://git.kernel.org/pub/scm/linux/kernel/git/dhowells/keyutils.git/snapshot/keyutils-${BPM_PKG_VERSION}.tar.gz
extract_to_bpm_source: true
extract_strip_components: 1
checksum: a61d5706136ae4c05bd48f86186bcfdbd88dd8bd5107e3e195c924cfc1b39bb4
+24
View File
@@ -0,0 +1,24 @@
# 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() {
echo "You may remove this function if you do not intend to use it"
}
# The build function is executed in the source directory
# This function is used to compile the source code
build() {
make CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" NO_ARLIB=1 LIBDIR=/usr/lib BINDIR=/usr/bin SBINDIR=/usr/sbin
}
# The package function is executed in the source directory
# This function is used to move the compiled files into the output directory
package() {
make NO_ARLIB=1 DESTDIR="$BPM_OUTPUT" LIBDIR=/usr/lib BINDIR=/usr/bin SBINDIR=/usr/sbin install
# Install package license
install -Dm644 "$BPM_SOURCE"/LICENCE* -t "$BPM_OUTPUT"/usr/share/licenses/keyutils/
}