Compare commits

...

2 commits

Author SHA1 Message Date
cf5e48a63e
chore(README): link fedora COPR project
Some checks failed
Update setup-lune Repository / Update setup-lune action (push) Has been cancelled
APT Repository / deploy (push) Has been cancelled
AUR Test / test (push) Has been cancelled
CI / CI (push) Has been cancelled
Homebrew Test / test_precompiled (push) Has been cancelled
Homebrew Test / test_source (push) Has been cancelled
Scoop Test / test (push) Has been cancelled
2025-01-26 23:46:14 +05:30
69f2b364d4
feat: include rpm spec package 2025-01-26 23:37:17 +05:30
2 changed files with 55 additions and 0 deletions

View file

@ -10,6 +10,7 @@ For more information on lune, see [lune-org/lune](https://github.com/lune-org/lu
| Scoop | ![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/CompeyDev/lune-packaging/scoop_test.yaml?logo=windows&logoColor=blue&label=%20&color=black) |
| AppImage | ![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/CompeyDev/lune-packaging/appimage.yaml?logo=linux&logoColor=yellow&label=%20&color=black) |
| APT | ![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/CompeyDev/lune-packaging/apt.yaml?logo=debian&logoColor=red&label=%20&color=black) |
| COPR | [Project](https://copr.fedorainfracloud.org/coprs/devcomp/lune/) |
## Installation

54
package/copr/lune.spec Normal file
View file

@ -0,0 +1,54 @@
Name: lune
Version: 0.8.9
Release: 1%{?dist}
Summary: A standalone Luau runtime
License: MPL2
URL: https://github.com/lune-org/lune
Source0: https://github.com/lune-org/lune/archive/refs/tags/v%{version}.tar.gz
ExclusiveArch: x86_64 aarch64
BuildRequires: cmake
BuildRequires: rust
BuildRequires: just
BuildRequires: musl-tools
BuildRequires: clang
BuildRequires: musl
BuildRequires: musl-devel
Requires: libstdc++
Requires: libgcc
Requires: openlibm
Requires: glibc
%description
%{summary}.
%prep
%setup -q -n lune-%{version}
%build
just build --locked --release
%install
mkdir -p %{buildroot}/%{_bindir}
install -m0755 ./target/release/%{name} %{buildroot}/%{_bindir}/%{name}
%files
%license LICENSE.txt
%{_bindir}/%{name}
%changelog
%autochangelog