From 90c58b51ea2aefd41b28c4f4d15704f657575c21 Mon Sep 17 00:00:00 2001 From: Owen-sz Date: Mon, 15 Jun 2026 14:32:00 +0200 Subject: [PATCH] add: linsh Signed-off-by: Owen-sz --- anda/devs/linsh/anda.hcl | 5 +++++ anda/devs/linsh/linsh.spec | 30 ++++++++++++++++++++++++++++++ anda/devs/linsh/update.rhai | 1 + 3 files changed, 36 insertions(+) create mode 100644 anda/devs/linsh/anda.hcl create mode 100644 anda/devs/linsh/linsh.spec create mode 100644 anda/devs/linsh/update.rhai diff --git a/anda/devs/linsh/anda.hcl b/anda/devs/linsh/anda.hcl new file mode 100644 index 0000000000..968deb06ee --- /dev/null +++ b/anda/devs/linsh/anda.hcl @@ -0,0 +1,5 @@ +project pkg { + rpm { + spec = "linsh.spec" + } +} diff --git a/anda/devs/linsh/linsh.spec b/anda/devs/linsh/linsh.spec new file mode 100644 index 0000000000..d46b257df9 --- /dev/null +++ b/anda/devs/linsh/linsh.spec @@ -0,0 +1,30 @@ +%define debug_package %{nil} + +Name: linsh +Version: 0.02 +Release: 1%{?dist} +Summary: Linux shell +License: GPL-2.0-or-later +URL: https://github.com/maxskiier/linsh +Source0: %{url}/archive/refs/tags/v%{version}.tar.gz +Packager: Owen Zimmerman + +BuildRequires: make +BuildRequires: gcc + +%description +%{summary}. + +%prep +%autosetup + +%build +%make_build + +%install +install -Dm755 linsh %{buildroot}%{_bindir}/linsh + +%files +%license LICENSE +%doc README.txt +%{_bindir}/linsh diff --git a/anda/devs/linsh/update.rhai b/anda/devs/linsh/update.rhai new file mode 100644 index 0000000000..49e50898a5 --- /dev/null +++ b/anda/devs/linsh/update.rhai @@ -0,0 +1 @@ +rpm.version(gh_tag("maxskiier/linsh"));