Update package version to 3.11.3

This commit is contained in:
2026-02-20 15:44:40 +02:00
parent 3379681504
commit 69f5cd06d6
3 changed files with 26 additions and 14 deletions
+3
View File
@@ -0,0 +1,3 @@
# Ignore BPM archives and signatures
*.bpm
*.bpm.sig
+22 -4
View File
@@ -1,10 +1,28 @@
name: feh
description: Light-weight, configurable and versatile image viewer
version: 3.11.2
version: 3.11.3
revision: 1
url: https://feh.finalrewind.org/
license: custom
maintainers:
- [email protected]
architecture: any
depends: ["curl","file","hicolor-icon-theme","imlib2","libexif","libxinerama"]
optional_depends: ["imagemagick"]
make_depends: ["libxt","perl-test-command"]
type: source
depends:
- curl
- file
- hicolor-icon-theme
- imlib2
- libexif
- libxinerama
optional_depends:
- imagemagick
make_depends:
- bzip2
- libxt
- perl-test-command
downloads:
- url: https://feh.finalrewind.org/feh-${BPM_PKG_VERSION}.tar.bz2
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: f2cca3592a433922c0db7a9365fd63e5402c121d932a9327e279c71be6501063
+1 -10
View File
@@ -2,16 +2,6 @@
# 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
DOWNLOAD="https://feh.finalrewind.org/feh-${BPM_PKG_VERSION}.tar.bz2"
FILENAME="${DOWNLOAD##*/}"
# The prepare function is executed in the root of the temp directory
# This function is used for downloading files and putting them into the correct location
prepare() {
wget "$DOWNLOAD"
tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE"
}
# The build function is executed in the source directory
# This function is used to compile the source code
build() {
@@ -29,5 +19,6 @@ check() {
package() {
make PREFIX=/usr DESTDIR="$BPM_OUTPUT" install
# Install package license
install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/feh/COPYING
}