-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
inisital package for stardust-black-hole
- Loading branch information
Showing
6 changed files
with
55 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
project pkg { | ||
rpm { | ||
spec = "stardust-black-hole.spec" | ||
} | ||
labels { | ||
nightly = 1 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
%global commit 0b847b6ddc383bfcc1e133a2238a37ce8202fe95 | ||
%global commit_date 20240824 | ||
%global shortcommit %(c=%{commit}; echo ${c:0:7}) | ||
%global debug_package %{nil} | ||
%define __os_install_post %{nil} | ||
|
||
Name: stardust-black-hole | ||
Version: %commit_date.%shortcommit | ||
Release: 1%?dist | ||
Summary: Spatial storage for stardust xr. | ||
URL: https://github.com/StardustXR/black-hole | ||
Source0: https://github.com/StardustXR/black-hole/archive/%commit/black-hole-%commit.tar.gz | ||
License: MIT | ||
BuildRequires: cargo cmake anda-srpm-macros cargo-rpm-macros mold | ||
Requires: libgcc glibc glibm | ||
|
||
Provides: black-hole | ||
Conflicts: black-hole | ||
|
||
%description | ||
Spatial storage for stardust xr | ||
|
||
%prep | ||
%autosetup -n black-hole-%commit | ||
%cargo_prep_online | ||
|
||
%build | ||
%cargo_build | ||
|
||
%install | ||
%cargo_install | ||
|
||
%files | ||
%_bindir/black-hole | ||
%license LICENSE | ||
%doc README.md | ||
|
||
%changelog | ||
* Sat Sep 7 2024 Owen-sz <[email protected]> | ||
- Package StardustXR black-hole |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
if filters.contains("nightly") { | ||
rpm.global("commit", gh_commit("StardustXR/black-hole")); | ||
if rpm.changed() { | ||
rpm.release(); | ||
rpm.global("commit_date", date()); | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.