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