From 3baf3eeb1c3f68f75aa162b9513dd71a780f57fe Mon Sep 17 00:00:00 2001 From: Didictateur Date: Mon, 9 Feb 2026 10:39:36 +0100 Subject: [PATCH] Initial commit --- aur/ronrunner/.SRCINFO | 11 +++++++++++ aur/ronrunner/PKGBUILD | 18 ++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 aur/ronrunner/.SRCINFO create mode 100644 aur/ronrunner/PKGBUILD diff --git a/aur/ronrunner/.SRCINFO b/aur/ronrunner/.SRCINFO new file mode 100644 index 0000000..9415283 --- /dev/null +++ b/aur/ronrunner/.SRCINFO @@ -0,0 +1,11 @@ +pkgbase = ronrunner + pkgdesc = Ron Runner - Une description courte + pkgver = 1.0_beta1 + pkgrel = 1 + url = https://github.com/votreusername/ronrunner + arch = x86_64 + license = MIT + source = https://github.com/votreusername/ronrunner/releases/download/v1.0_beta1/ronrunner-1.0_beta1.tar.gz + sha256sums = HASH_A_CALCULER + +pkgname = ronrunner diff --git a/aur/ronrunner/PKGBUILD b/aur/ronrunner/PKGBUILD new file mode 100644 index 0000000..40767fc --- /dev/null +++ b/aur/ronrunner/PKGBUILD @@ -0,0 +1,18 @@ +pkgname=ronrunner +pkgver=1.0_beta1 +pkgrel=1 +pkgdesc="Ron Runner - Une description courte" +arch=('x86_64') +url="https://github.com/votreusername/ronrunner" +license=('MIT') +source=("https://github.com/votreusername/ronrunner/releases/download/v${pkgver}/ronrunner-${pkgver}.tar.gz") +sha256sums=('HASH_A_CALCULER') + +build() { + cd "$srcdir/$pkgname-$pkgver" +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + install -Dm755 usr/bin/ronrunner "$pkgdir/usr/bin/ronrunner" +} \ No newline at end of file