Initial commit
This commit is contained in:
parent
12673669e5
commit
3baf3eeb1c
2 changed files with 29 additions and 0 deletions
11
aur/ronrunner/.SRCINFO
Normal file
11
aur/ronrunner/.SRCINFO
Normal file
|
|
@ -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
|
||||
18
aur/ronrunner/PKGBUILD
Normal file
18
aur/ronrunner/PKGBUILD
Normal file
|
|
@ -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"
|
||||
}
|
||||
Loading…
Reference in a new issue