First commit - surfpool v0.12.0

This commit is contained in:
guimoz 2025-12-09 17:30:12 +01:00
commit 932aeec4fb
3 changed files with 40 additions and 0 deletions

12
.SRCINFO Normal file
View file

@ -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

12
LICENSE Normal file
View file

@ -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.

16
PKGBUILD Normal file
View file

@ -0,0 +1,16 @@
# Maintainer: guimoz <me@guimoz.fr>
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"
}