-
-
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.
fix: stardust-{armillary,black-hole,protostar} (#2309)
* fix: stardust-flatland * fix export for STARDUST_RES_PREFIXES * fix: stardust-{armillary,black-hole,protostar} Make everything track commit head
- Loading branch information
Showing
3 changed files
with
16 additions
and
6 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 |
---|---|---|
|
@@ -2,4 +2,7 @@ project pkg { | |
rpm { | ||
spec = "stardust-armillary.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 |
---|---|---|
|
@@ -27,13 +27,17 @@ Packager: Owen Zimmerman <[email protected]> | |
|
||
%install | ||
%define __cargo_common_opts %{?_smp_mflags} -Z avoid-dev-deps --locked | ||
STARDUST_RES_PREFIXES=%_datadir | ||
export STARDUST_RES_PREFIXES=%_datadir | ||
%cargo_install | ||
|
||
mkdir -p %buildroot%_datadir | ||
cp -r res/* %buildroot%_datadir/ | ||
|
||
%files | ||
%_bindir/black-hole | ||
%license LICENSE | ||
%doc README.md | ||
%license LICENSE | ||
%_bindir/black-hole | ||
%_datadir/black_hole/ | ||
|
||
%changelog | ||
* Sat Sep 8 2024 Owen-sz <[email protected]> | ||
|
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 |
---|---|---|
|
@@ -27,21 +27,24 @@ Prototype application launcher for StardustXR, providing an easy to use crate to | |
|
||
%install | ||
%define __cargo_common_opts %{?_smp_mflags} -Z avoid-dev-deps --locked | ||
STARDUST_RES_PREFIXES=%_datadir | ||
export STARDUST_RES_PREFIXES=%_datadir | ||
(cd app_grid && %cargo_install) & | ||
(cd hexagon_launcher && %cargo_install) & | ||
(cd single && %cargo_install) & | ||
(cd sirius && %cargo_install) & | ||
|
||
wait | ||
|
||
cp -r res/* %buildroot%_datadir/ | ||
|
||
%files | ||
%doc README.md | ||
%license LICENSE | ||
%_bindir/app_grid | ||
%_bindir/hexagon_launcher | ||
%_bindir/single | ||
%_bindir/sirius | ||
%license LICENSE | ||
%doc README.md | ||
%_datadir/protostar/ | ||
|
||
%changelog | ||
* Tue Sep 10 2024 Owen-sz <[email protected]> | ||
|