mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-04-11 11:50:57 +01:00
Compare commits
2 commits
4b226883ba
...
cf5e48a63e
Author | SHA1 | Date | |
---|---|---|---|
cf5e48a63e | |||
69f2b364d4 |
2 changed files with 55 additions and 0 deletions
|
@ -10,6 +10,7 @@ For more information on lune, see [lune-org/lune](https://github.com/lune-org/lu
|
|||
| Scoop |  |
|
||||
| AppImage |  |
|
||||
| APT |  |
|
||||
| COPR | [Project](https://copr.fedorainfracloud.org/coprs/devcomp/lune/) |
|
||||
|
||||
|
||||
## Installation
|
||||
|
|
54
package/copr/lune.spec
Normal file
54
package/copr/lune.spec
Normal 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
|
||||
|
Loading…
Add table
Reference in a new issue