Initial commit

This commit is contained in:
2025-10-01 08:58:09 +03:00
commit 858f56c04c
4 changed files with 48 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
# Exclude bpm archives
*.bpm
+4
View File
@@ -0,0 +1,4 @@
#!/bin/sh
# Ignore this package
echo "ignore"
+21
View File
@@ -0,0 +1,21 @@
name: jemalloc
description: A general purpose malloc implementation
version: 5.3.0
revision: 1
url: https://jemalloc.net/
license: BSD-2-Clause
architecture: any
type: source
depends:
- gcc-libs
- glibc
optional_depends:
- perl
make_depends:
- bzip2
- clang
downloads:
- url: https://github.com/jemalloc/jemalloc/releases/download/${BPM_PKG_VERSION}/jemalloc-${BPM_PKG_VERSION}.tar.bz2
extract_to_bpm_source: true
extract_strip_components: 1
checksum: 2db82d1e7119df3e71b7640219b6dfe84789bc0537983c3b7ac4f7189aecfeaa
+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() {
export CC=clang CXX=clang++
./configure --prefix=/usr --enable-prof --enable-autogen
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" install
# Install package license
install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/jemalloc/COPYING
}