From 932aeec4fb121a77311ee3dbfa7f86903bcf33e1 Mon Sep 17 00:00:00 2001 From: guimoz Date: Tue, 9 Dec 2025 17:30:12 +0100 Subject: [PATCH] First commit - surfpool v0.12.0 --- .SRCINFO | 12 ++++++++++++ LICENSE | 12 ++++++++++++ PKGBUILD | 16 ++++++++++++++++ 3 files changed, 40 insertions(+) create mode 100644 .SRCINFO create mode 100644 LICENSE create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..01f493c5ba32 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,12 @@ +pkgbase = surfpool-bin + pkgdesc = A drop-in replacement for solana-test-validator and IaC for Solana + pkgver = 0.12.0 + pkgrel = 1 + url = https://github.com/txtx/surfpool + arch = x86_64 + license = Apache-2.0 + provides = surfpool + source = surfpool-bin-0.12.0.tar.gz::https://github.com/txtx/surfpool/releases/download/v0.12.0/surfpool-linux-x64.tar.gz + sha256sums = 5b39cf5374ce29ac0476181cb910d666a0e1c638f7ea5905cc94965a120064de + +pkgname = surfpool-bin diff --git a/LICENSE b/LICENSE new file mode 100644 index 000000000000..b87c5e4be442 --- /dev/null +++ b/LICENSE @@ -0,0 +1,12 @@ +Copyright Arch Linux Contributors + +Permission to use, copy, modify, and/or distribute this software for +any purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL +WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE +FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY +DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN +AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..6c465ce49b2d --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,16 @@ +# Maintainer: guimoz + +pkgname=surfpool-bin +pkgver=0.12.0 +pkgrel=1 +pkgdesc="A drop-in replacement for solana-test-validator and IaC for Solana" +arch=('x86_64') +url="https://github.com/txtx/surfpool" +license=('Apache-2.0') +provides=("${pkgname%-bin}") +source=("$pkgname-$pkgver.tar.gz::https://github.com/txtx/surfpool/releases/download/v$pkgver/surfpool-linux-x64.tar.gz") +sha256sums=('5b39cf5374ce29ac0476181cb910d666a0e1c638f7ea5905cc94965a120064de') + +package() { + install -Dm755 surfpool "$pkgdir/usr/bin/surfpool" +}