Update package version to 0.16.1

This commit is contained in:
2025-10-23 18:18:11 +03:00
parent 82e256eac0
commit 9bb015661e
2 changed files with 21 additions and 14 deletions
+21 -4
View File
@@ -1,10 +1,27 @@
name: alacritty
description: A cross-platform, OpenGL terminal emulator
version: 0.15.1
version: 0.16.1
revision: 1
url: https://github.com/alacritty/alacritty
license: Apache-2.0,MIT
architecture: any
depends: ["fontconfig","freetype2","libxcursor","libxi","libxkbcommon","libxrandr"]
optional_depends: ["ncurses"]
make_depends: ["rustc","cmake","libxcb","ncurses"]
type: source
depends:
- fontconfig
- freetype2
- libxcursor
- libxi
- libxkbcommon
- libxrandr
optional_depends:
- ncurses
make_depends:
- rustc
- cmake
- libxcb
- ncurses
downloads:
- url: https://github.com/alacritty/alacritty/archive/refs/tags/v${BPM_PKG_VERSION}.tar.gz
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: b7240df4a52c004470977237a276185fc97395d59319480d67cad3c4347f395e
-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://github.com/alacritty/alacritty/archive/refs/tags/v${BPM_PKG_VERSION}.tar.gz"
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() {