Initial Commit

This commit is contained in:
2026-01-05 21:49:06 +02:00
commit deb5d785d9
4 changed files with 50 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://repo.or.cz/socat.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 -v 'b[0-9]$' | tail -n1)
# Trim prefix
VERSION=${TAG_NAME//tag-/}
echo "$VERSION"
+17
View File
@@ -0,0 +1,17 @@
name: socat
description: Multipurpose relay
version: 1.8.1.0
revision: 1
url: http://www.dest-unreach.org/socat/
license: GPL2-only
architecture: any
type: source
depends:
- glibc
- openssl
- readline
downloads:
- url: http://www.dest-unreach.org/socat/download/socat-${BPM_PKG_VERSION}.tar.gz
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: 9a884880b1b00dfb2ffc6959197b1554b200af731018174cd048115dc28ef239
+19
View File
@@ -0,0 +1,19 @@
# 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() {
./configure --prefix=/usr --mandir=/usr/share/man
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/socat/COPYING
}