Initial commit

This commit is contained in:
2025-12-15 15:11:48 +02:00
commit 5d15af7509
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/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"
+15
View File
@@ -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
+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/libnsgif/COPYING
}