initial commit based on runa

This commit is contained in:
Luis Martinez 2025-12-28 12:29:11 -06:00
commit b11fded17d
3 changed files with 67 additions and 0 deletions

19
.SRCINFO Normal file
View file

@ -0,0 +1,19 @@
pkgbase = runa-bin
pkgdesc = A fast and lightweight console file browser written in Rust
pkgver = 0.3.4
pkgrel = 1
url = https://github.com/alexm-dev/runa
arch = x86_64
arch = aarch64
license = MIT
depends = gcc-libs
provides = runa
conflicts = runa
source = LICENSE
sha256sums = 18f0dc4cd8fadfc12ef6e05373ad5baf634cbc857ffe6076c65f8147c77d48de
source_x86_64 = runa-bin-0.3.4-x86_64.tar.gz::https://github.com/alexm-dev/runa/releases/download/v0.3.4/runa-linux-x86_64.tar.gz
sha256sums_x86_64 = 9add4f0777ea8e7e1ec34318b78ae40ce5e31e4f76e5d1655ad84c62e34d7a7e
source_aarch64 = runa-bin-0.3.4-aarch64.tar.gz::https://github.com/alexm-dev/runa/releases/download/v0.3.4/runa-linux-arm64.tar.gz
sha256sums_aarch64 = 9f46830cca3b55a90ae01016369a3d0a279a233e19789d5fef26451aa8ad36be
pkgname = runa-bin

22
LICENSE Normal file
View file

@ -0,0 +1,22 @@
MIT License
Copyright (c) 2025 Alexandros McCray (alexm-dev)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

26
PKGBUILD Normal file
View file

@ -0,0 +1,26 @@
# Maintainer: Luis Martinez <luis dot martinez at disroot dot org>
# Contributor: alexm-dev <runa-dev@proton.me>
pkgname=runa-bin
_name=runa
pkgver=0.3.4
pkgrel=1
pkgdesc="A fast and lightweight console file browser written in Rust"
arch=('x86_64' 'aarch64')
url="https://github.com/alexm-dev/runa"
license=('MIT')
depends=('gcc-libs')
provides=('runa')
conflicts=('runa')
source=('LICENSE')
source_x86_64=("$pkgname-$pkgver-x86_64.tar.gz::$url/releases/download/v$pkgver/runa-linux-x86_64.tar.gz")
source_aarch64=("$pkgname-$pkgver-aarch64.tar.gz::$url/releases/download/v$pkgver/runa-linux-arm64.tar.gz")
sha256sums=('18f0dc4cd8fadfc12ef6e05373ad5baf634cbc857ffe6076c65f8147c77d48de')
sha256sums_x86_64=('9add4f0777ea8e7e1ec34318b78ae40ce5e31e4f76e5d1655ad84c62e34d7a7e')
sha256sums_aarch64=('9f46830cca3b55a90ae01016369a3d0a279a233e19789d5fef26451aa8ad36be')
package() {
install -Dm755 rn -t "$pkgdir/usr/bin/"
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
}