This commit is contained in:
june 2025-12-24 21:33:50 -08:00
commit 30e00f2069
3 changed files with 34 additions and 0 deletions

13
.SRCINFO Normal file
View file

@ -0,0 +1,13 @@
pkgbase = craftpinger-bin
pkgdesc = A command-line program to see if any Minecraft servers have players online.
pkgver = 1.0.0
pkgrel = 1
url = https://git.linuxposting.xyz/jhalfsharp/craftpinger
arch = x86_64
license = MIT
provides = craftpinger
conflicts = craftpinger
source = https://git.linuxposting.xyz/jhalfsharp/craftpinger/releases/download/v1.0.0/craftpinger-1.0.0-x86_64.tar.gz
sha256sums = 3fd143fca2e73746ef87aa45a48407acfb38857f53fb3de6d3bff9d6a22079b0
pkgname = craftpinger-bin

20
PKGBUILD Normal file
View file

@ -0,0 +1,20 @@
# Maintainer: jhalfsharp
#
# This PKGBUILD was generated by `cargo aur`: https://crates.io/crates/cargo-aur
pkgname=craftpinger-bin
pkgver=1.0.0
pkgrel=1
pkgdesc="A command-line program to see if any Minecraft servers have players online."
url="https://git.linuxposting.xyz/jhalfsharp/craftpinger"
license=("MIT")
arch=("x86_64")
provides=("craftpinger")
conflicts=("craftpinger")
source=("https://git.linuxposting.xyz/jhalfsharp/craftpinger/releases/download/v$pkgver/craftpinger-$pkgver-x86_64.tar.gz")
sha256sums=("3fd143fca2e73746ef87aa45a48407acfb38857f53fb3de6d3bff9d6a22079b0")
package() {
install -Dm755 craftpinger -t "$pkgdir/usr/bin"
install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
}

1
README.md Normal file
View file

@ -0,0 +1 @@
This is the AUR build info for craftpinger.