From 9bb015661e8d4a9f5c3f75d55eaf383375ac17a4 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Thu, 23 Oct 2025 18:18:11 +0300 Subject: [PATCH] Update package version to 0.16.1 --- pkg.info | 25 +++++++++++++++++++++---- source.sh | 10 ---------- 2 files changed, 21 insertions(+), 14 deletions(-) diff --git a/pkg.info b/pkg.info index 82fc70d..0a3cb19 100644 --- a/pkg.info +++ b/pkg.info @@ -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 diff --git a/source.sh b/source.sh index b6533dc..5b90425 100644 --- a/source.sh +++ b/source.sh @@ -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() {