Update package version to 2.61.1

This commit is contained in:
2025-09-17 12:12:02 +03:00
parent 65f8bff100
commit 2d7dadbc80
3 changed files with 23 additions and 8 deletions
+8 -4
View File
@@ -10,25 +10,29 @@ FILENAME="${DOWNLOAD##*/}"
prepare() {
wget "$DOWNLOAD"
tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE"
cd "$BPM_SOURCE"
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
}
# The build function is executed in the source directory
# This function is used to compile the source code
build() {
./configure --prefix=/usr --enable-vala --disable-static
make
meson setup --prefix=/usr --buildtype=release build
meson compile -C build
}
# The check function is executed in the source directory
# This function is used to run tests to verify the package has been compiled correctly
check() {
RUSTC_BOOTSTRAP=1 make -C librsvg check || :
meson test -C build
}
# The package function is executed in the source directory
# This function is used to move the compiled files into the output directory
package() {
make DESTDIR="$BPM_OUTPUT" install
meson install -C build --destdir="$BPM_OUTPUT"
# Install package license
install -Dm644 "$BPM_SOURCE"/COPYING.LIB "$BPM_OUTPUT"/usr/share/licenses/librsvg/COPYING.LIB
}