commit cc99638ff569811b893af3d2ccffd8f3de8a7c76 Author: EnumDev Date: Mon Dec 15 15:16:48 2025 +0200 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3e58e5f --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +# Exclude bpm archives +*.bpm \ No newline at end of file diff --git a/check-version.sh b/check-version.sh new file mode 100644 index 0000000..3f26465 --- /dev/null +++ b/check-version.sh @@ -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" diff --git a/pkg.info b/pkg.info new file mode 100644 index 0000000..5358a6b --- /dev/null +++ b/pkg.info @@ -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 diff --git a/source.sh b/source.sh new file mode 100644 index 0000000..a4c5e8d --- /dev/null +++ b/source.sh @@ -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 +}