From 5d15af75092b9846810a62ad68a23b3ee03677ba Mon Sep 17 00:00:00 2001 From: EnumDev Date: Mon, 15 Dec 2025 15:11:48 +0200 Subject: [PATCH] Initial commit --- .gitignore | 2 ++ check-version.sh | 9 +++++++++ pkg.info | 15 +++++++++++++++ source.sh | 19 +++++++++++++++++++ 4 files changed, 45 insertions(+) create mode 100644 .gitignore create mode 100644 check-version.sh create mode 100644 pkg.info create mode 100644 source.sh 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..6d2e3e2 --- /dev/null +++ b/check-version.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +# Git repository +REPO="git://git.netsurf-browser.org/libnsgif.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..a6c95c0 --- /dev/null +++ b/pkg.info @@ -0,0 +1,15 @@ +name: libnsgif +description: Decoding library for the GIF image file format +version: 1.0.0 +revision: 1 +url: https://www.netsurf-browser.org/projects/libnsgif/ +license: MIT +architecture: any +type: source +make_depends: + - netsurf-buildsystem +downloads: + - url: https://download.netsurf-browser.org/libs/releases/libnsgif-${BPM_PKG_VERSION}-src.tar.gz + extract_to: ${BPM_SOURCE} + extract_strip_components: 1 + checksum: 6014c842f61454d2f5a0f8243d7a8d7bde9b7da3ccfdca2d346c7c0b2c4c061b diff --git a/source.sh b/source.sh new file mode 100644 index 0000000..5e4d46a --- /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/libnsgif/COPYING +}