From a1313ea6a394f4254b4a4f56c7c93d60bc73ffce Mon Sep 17 00:00:00 2001 From: Salvatore Stella Date: Tue, 21 Jul 2026 00:12:19 +0200 Subject: [PATCH 1/2] Add template for snx-rs --- srcpkgs/snx-rs/template | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 srcpkgs/snx-rs/template diff --git a/srcpkgs/snx-rs/template b/srcpkgs/snx-rs/template new file mode 100644 index 00000000000000..81123f22ad3077 --- /dev/null +++ b/srcpkgs/snx-rs/template @@ -0,0 +1,20 @@ +# Template file for 'snx-rs' +pkgname=snx-rs +version=6.2.1 +revision=1 +build_style=cargo +short_desc="Open Source Client For Check Point VPN Tunnels (CLI only)" +maintainer="Salvatore Stella " +license="AGPL-3.0-only" +homepage="https://github.com/ancwrd1/snx-rs" +changelog="https://raw.githubusercontent.com/ancwrd1/snx-rs/refs/heads/main/CHANGELOG.md" +distfiles="https://github.com/ancwrd1/snx-rs/archive/refs/tags/v${version}.tar.gz" +make_build_args="--package snx-rs --package snxctl" +hostmakedepends="pkg-config cargo" +makedepends="openssl-devel sqlite-devel" +checksum=4c94b0df48b846dbac1a77ecc84efba368298f8127aac794141fdc682d299943 + +do_install() { + vbin target/${RUST_TARGET}/release/snx-rs + vbin target/${RUST_TARGET}/release/snxctl +} From a27ee6e2b76d03fe1df0b2e5fc08bd8503fe5965 Mon Sep 17 00:00:00 2001 From: Salvatore Stella Date: Tue, 21 Jul 2026 11:26:46 +0200 Subject: [PATCH 2/2] Reorder entries --- srcpkgs/snx-rs/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/snx-rs/template b/srcpkgs/snx-rs/template index 81123f22ad3077..6902dd9f282688 100644 --- a/srcpkgs/snx-rs/template +++ b/srcpkgs/snx-rs/template @@ -3,15 +3,15 @@ pkgname=snx-rs version=6.2.1 revision=1 build_style=cargo +make_build_args="--package snx-rs --package snxctl" +hostmakedepends="pkg-config" +makedepends="openssl-devel sqlite-devel" short_desc="Open Source Client For Check Point VPN Tunnels (CLI only)" maintainer="Salvatore Stella " license="AGPL-3.0-only" homepage="https://github.com/ancwrd1/snx-rs" changelog="https://raw.githubusercontent.com/ancwrd1/snx-rs/refs/heads/main/CHANGELOG.md" distfiles="https://github.com/ancwrd1/snx-rs/archive/refs/tags/v${version}.tar.gz" -make_build_args="--package snx-rs --package snxctl" -hostmakedepends="pkg-config cargo" -makedepends="openssl-devel sqlite-devel" checksum=4c94b0df48b846dbac1a77ecc84efba368298f8127aac794141fdc682d299943 do_install() {