Initial commit

This commit is contained in:
2025-12-15 15:16:48 +02:00
commit cc99638ff5
4 changed files with 45 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
# Exclude bpm archives
*.bpm
+9
View File
@@ -0,0 +1,9 @@
#!/bin/bash
# Git repository
REPO="git://git.netsurf-browser.org/libnsbmp.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'/' -f4)
echo "$TAG_NAME"
+15
View File
@@ -0,0 +1,15 @@
name: libnsbmp
description: Decoding library for BMP and ICO image file formats
version: 0.1.7
revision: 1
url: https://www.netsurf-browser.org/projects/libnsbmp/
license: MIT
architecture: any
type: source
make_depends:
- netsurf-buildsystem
downloads:
- url: https://download.netsurf-browser.org/libs/releases/libnsbmp-${BPM_PKG_VERSION}-src.tar.gz
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: 5407a7682a122baaaa5a15b505290e2d37df54c13c5edef4b09d12c862d82293
+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() {
export CFLAGS="${CFLAGS} -ffat-lto-objects -fno-strict-aliasing -w"
make PREFIX=/usr INCLUDEDIR=include LIBDIR=lib COMPONENT_TYPE=lib-shared
}
# The package function is executed in the source directory
# This function is used to move the compiled files into the output directory
package() {
make install DESTDIR="$BPM_OUTPUT" PREFIX=/usr INCLUDEDIR=include LIBDIR=lib COMPONENT_TYPE=lib-shared
# Install package license
install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/libnsbmp/COPYING
}